aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-04-23 21:11:05 +0000
committerChris Lattner <sabre@nondot.org>2005-04-23 21:11:05 +0000
commitcc1f24585e7d23fd6622c17099159cdc038ee618 (patch)
tree91c87c7d54ed90e1232efea1ab6a010febd94354
parentf1b200b0fbada93044770088b96b3750739e0d0d (diff)
downloadexternal_llvm-cc1f24585e7d23fd6622c17099159cdc038ee618.zip
external_llvm-cc1f24585e7d23fd6622c17099159cdc038ee618.tar.gz
external_llvm-cc1f24585e7d23fd6622c17099159cdc038ee618.tar.bz2
Propagate eq sets through the bu graphs to the cbu and eq graphs, fixing
a crash of the sfv on 188.ammp git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21478 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Analysis/DataStructure/CompleteBottomUp.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Analysis/DataStructure/CompleteBottomUp.cpp b/lib/Analysis/DataStructure/CompleteBottomUp.cpp
index 5cf4bcf..e3deaff 100644
--- a/lib/Analysis/DataStructure/CompleteBottomUp.cpp
+++ b/lib/Analysis/DataStructure/CompleteBottomUp.cpp
@@ -35,6 +35,7 @@ namespace {
//
bool CompleteBUDataStructures::runOnModule(Module &M) {
BUDataStructures &BU = getAnalysis<BUDataStructures>();
+ GlobalECs = BU.getGlobalECs();
GlobalsGraph = new DSGraph(BU.getGlobalsGraph(), GlobalECs);
GlobalsGraph->setPrintAuxCalls();