forked from OSchip/llvm-project
ONLY merge in the aux call sites, this causes a HUGE speedup
llvm-svn: 4640
This commit is contained in:
parent
56363a05e6
commit
09a21dc2f5
|
@ -112,7 +112,8 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) {
|
|||
<< " in: " << F.getName() << "\n");
|
||||
|
||||
// Handle self recursion by resolving the arguments and return value
|
||||
Graph->mergeInGraph(Call, GI, DSGraph::StripAllocaBit);
|
||||
Graph->mergeInGraph(Call, GI, DSGraph::StripAllocaBit |
|
||||
DSGraph::DontCloneCallNodes);
|
||||
|
||||
// Erase the entry in the Callees vector
|
||||
Callees.erase(Callees.begin()+c--);
|
||||
|
|
Loading…
Reference in New Issue