Fix a bug in a previous checkin that broke 175.vpr
authorChris Lattner <sabre@nondot.org>
Thu, 4 Mar 2004 21:36:57 +0000 (21:36 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 4 Mar 2004 21:36:57 +0000 (21:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12128 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/CompleteBottomUp.cpp

index b8189c522bbb06eeeb8aa9e54557824e511d6287..95c9d3cf5db9a33114604ecbd32fa14982047536 100644 (file)
@@ -222,5 +222,5 @@ void CompleteBUDataStructures::processGraph(DSGraph &G) {
 
   // Delete dead nodes.  Treat globals that are unreachable but that can
   // reach live nodes as live.
-  G.removeDeadNodes(DSGraph::RemoveUnreachableGlobals);
+  G.removeDeadNodes(DSGraph::KeepUnreachableGlobals);
 }