diff options
| author | Chris Lattner <sabre@nondot.org> | 2004-03-04 21:36:57 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2004-03-04 21:36:57 +0000 | 
| commit | 4ab483c6ad5695e189cc3e9ae7283173b323046b (patch) | |
| tree | bc5087877eb486227ff493ccbee4b09a01600149 /lib/Analysis/DataStructure/CompleteBottomUp.cpp | |
| parent | 3aeb40cadb2c98db243f5ee57ccf1ffb60365042 (diff) | |
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
Diffstat (limited to 'lib/Analysis/DataStructure/CompleteBottomUp.cpp')
| -rw-r--r-- | lib/Analysis/DataStructure/CompleteBottomUp.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/CompleteBottomUp.cpp b/lib/Analysis/DataStructure/CompleteBottomUp.cpp index b8189c522b..95c9d3cf5d 100644 --- a/lib/Analysis/DataStructure/CompleteBottomUp.cpp +++ b/lib/Analysis/DataStructure/CompleteBottomUp.cpp @@ -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);  }  | 
