From: Chris Lattner Date: Sat, 23 Apr 2005 21:11:05 +0000 (+0000) Subject: Propagate eq sets through the bu graphs to the cbu and eq graphs, fixing X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cc1f24585e7d23fd6622c17099159cdc038ee618;p=oota-llvm.git 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 --- diff --git a/lib/Analysis/DataStructure/CompleteBottomUp.cpp b/lib/Analysis/DataStructure/CompleteBottomUp.cpp index 5cf4bcf66e0..e3deaff6095 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(); + GlobalECs = BU.getGlobalECs(); GlobalsGraph = new DSGraph(BU.getGlobalsGraph(), GlobalECs); GlobalsGraph->setPrintAuxCalls();