diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-24 18:42:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-24 18:42:51 +0000 |
commit | 923d925953e05eca49818991dc7e456ea96094fe (patch) | |
tree | 18fc69d31b1f80045555a41330069a838537c370 /llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp | |
parent | ba6006d84b68d14c8027215abcef8c112cbdf11c (diff) | |
download | bcm5719-llvm-923d925953e05eca49818991dc7e456ea96094fe.tar.gz bcm5719-llvm-923d925953e05eca49818991dc7e456ea96094fe.zip |
don't bother |'ing in 0's
llvm-svn: 20815
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp b/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp index 7632200b83e..288f594926b 100644 --- a/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp +++ b/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp @@ -436,7 +436,7 @@ void EquivClassGraphs::processGraph(DSGraph &G) { if (CalleeGraph != &G) { ++NumFoldGraphInlines; G.mergeInGraph(CS, *CalleeFunc, *CalleeGraph, - DSGraph::KeepModRefBits | DSGraph::StripAllocaBit | + DSGraph::StripAllocaBit | DSGraph::DontCloneCallNodes | DSGraph::DontCloneAuxCallNodes); DEBUG(std::cerr << " Inlining graph [" << i << "/" |