diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-08 01:53:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-08 01:53:10 +0000 |
commit | fa616e14fcf429f111383818660363c06dfe6154 (patch) | |
tree | a98316ce4de8cf7679bd7fb5da7eb75ea5f1b12e /llvm/lib | |
parent | 9ab85275efbe1e49736be85d4fa8395c2915d752 (diff) | |
download | bcm5719-llvm-fa616e14fcf429f111383818660363c06dfe6154.tar.gz bcm5719-llvm-fa616e14fcf429f111383818660363c06dfe6154.zip |
Add one that I missed
llvm-svn: 11179
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/CompleteBottomUp.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/DataStructure/CompleteBottomUp.cpp b/llvm/lib/Analysis/DataStructure/CompleteBottomUp.cpp index 58327016dc4..1755c8574fc 100644 --- a/llvm/lib/Analysis/DataStructure/CompleteBottomUp.cpp +++ b/llvm/lib/Analysis/DataStructure/CompleteBottomUp.cpp @@ -77,6 +77,7 @@ bool CompleteBUDataStructures::run(Module &M) { if (!I->isExternal() && !DSInfo.count(I)) calculateSCCGraphs(getOrCreateGraph(*I), Stack, NextID, ValMap); + GlobalsGraph->removeTriviallyDeadNodes(); return false; } |