aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/DataStructure/FunctionRepBuilder.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-03-28 19:16:48 +0000
committerChris Lattner <sabre@nondot.org>2002-03-28 19:16:48 +0000
commit7d093d42319e24ccf5c48a1147ec2f03362ff367 (patch)
tree4ae4ea5754f42378737d5b7c4c628f4918662ba7 /lib/Analysis/DataStructure/FunctionRepBuilder.cpp
parentd38cadb13d0e7091a15269c39c7703e137ec174b (diff)
* 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
Diffstat (limited to 'lib/Analysis/DataStructure/FunctionRepBuilder.cpp')
-rw-r--r--lib/Analysis/DataStructure/FunctionRepBuilder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/DataStructure/FunctionRepBuilder.cpp b/lib/Analysis/DataStructure/FunctionRepBuilder.cpp
index 87d4a332ce..60cf964042 100644
--- a/lib/Analysis/DataStructure/FunctionRepBuilder.cpp
+++ b/lib/Analysis/DataStructure/FunctionRepBuilder.cpp
@@ -339,10 +339,10 @@ FunctionDSGraph::FunctionDSGraph(Function *F) : Func(F) {
// 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();
}
}