From 7d093d42319e24ccf5c48a1147ec2f03362ff367 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 28 Mar 2002 19:16:48 +0000 Subject: * Rename UnlinkUndistinguishableShadowNodes & RemoveUnreachableShadowNodes to reflect that they can eliminate arbitrary nodes. * Rename the ShadowNodeEliminate.cpp file to EliminateNodes.cpp for the same reason git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2020 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/DataStructure/ComputeClosure.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Analysis/DataStructure/ComputeClosure.cpp') diff --git a/lib/Analysis/DataStructure/ComputeClosure.cpp b/lib/Analysis/DataStructure/ComputeClosure.cpp index 1f15b681ab..a86d6e50e3 100644 --- a/lib/Analysis/DataStructure/ComputeClosure.cpp +++ b/lib/Analysis/DataStructure/ComputeClosure.cpp @@ -193,10 +193,10 @@ void FunctionDSGraph::computeClosure(const DataStructure &DS) { // Eliminate shadow nodes that are not distinguishable from some other // node in the graph... // - Changed = UnlinkUndistinguishableShadowNodes(); + Changed = UnlinkUndistinguishableNodes(); // Eliminate shadow nodes that are now extraneous due to linking... - Changed |= RemoveUnreachableShadowNodes(); + Changed |= RemoveUnreachableNodes(); } //if (F == Func) return; // Only do one self inlining -- cgit v1.2.3-18-g5258