From c3ae15cf0ba1df8eb1812f7f70593306124fe4de 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 llvm-svn: 2020 --- llvm/lib/Analysis/DataStructure/FunctionRepBuilder.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/Analysis/DataStructure/FunctionRepBuilder.cpp') 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(); } } -- cgit v1.2.3