diff options
author | Chris Lattner <sabre@nondot.org> | 2002-03-28 19:16:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-03-28 19:16:48 +0000 |
commit | c3ae15cf0ba1df8eb1812f7f70593306124fe4de (patch) | |
tree | 3faa7bebe015b1421f8568877b2bc51f3dbb9304 /llvm/lib/Analysis/DataStructure/FunctionRepBuilder.cpp | |
parent | 7b4155888d855c637432cb62d934b21c4cd11a46 (diff) | |
download | bcm5719-llvm-c3ae15cf0ba1df8eb1812f7f70593306124fe4de.tar.gz bcm5719-llvm-c3ae15cf0ba1df8eb1812f7f70593306124fe4de.zip |
* Rename UnlinkUndistinguishableShadowNodes & RemoveUnreachableShadowNodes
to reflect that they can eliminate arbitrary nodes.
* Rename the ShadowNodeEliminate.cpp file to EliminateNodes.cpp for the
same reason
llvm-svn: 2020
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/FunctionRepBuilder.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/FunctionRepBuilder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/DataStructure/FunctionRepBuilder.cpp b/llvm/lib/Analysis/DataStructure/FunctionRepBuilder.cpp index 87d4a332ced..60cf9640429 100644 --- a/llvm/lib/Analysis/DataStructure/FunctionRepBuilder.cpp +++ b/llvm/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(); } } |