Make the TD pass not include all of the call nodes from the local pass,

eliminating incomplete markers from them

llvm-svn: 5490
This commit is contained in:
Chris Lattner 2003-02-04 00:59:32 +00:00
parent a0e9e6ec8c
commit 36fd3eccbd
1 changed files with 1 additions and 0 deletions

View File

@ -87,6 +87,7 @@ DSGraph &TDDataStructures::getOrCreateDSGraph(Function &F) {
if (G == 0) { // Not created yet? Clone BU graph...
G = new DSGraph(getAnalysis<BUDataStructures>().getDSGraph(F));
G->getAuxFunctionCalls().clear();
G->setPrintAuxCalls();
G->setGlobalsGraph(GlobalsGraph);
}
return *G;