Fix a bug in a previous checkin that broke 175.vpr

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12128 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-03-04 21:36:57 +00:00
parent 3aeb40cadb
commit 4ab483c6ad

View 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);
}