diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-20 18:02:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-20 18:02:56 +0000 |
commit | c5cdc2260d121e1ecae3f9fefe29854fac613180 (patch) | |
tree | 06eb2d27d806e480fe2acbe26c89351469642c00 /llvm/lib/Analysis/DataStructure/TopDownClosure.cpp | |
parent | 21ef7678d64b6b799104d95e888435996cb0f978 (diff) | |
download | bcm5719-llvm-c5cdc2260d121e1ecae3f9fefe29854fac613180.tar.gz bcm5719-llvm-c5cdc2260d121e1ecae3f9fefe29854fac613180.zip |
Don't strip modref bits when inlining down the call graph. This fixes
the DSGraph/2003-06-30-TopDownResolve.ll regression from last night.
llvm-svn: 20717
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/TopDownClosure.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/TopDownClosure.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp b/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp index 4d6313683e0..8190532176f 100644 --- a/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp +++ b/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp @@ -243,7 +243,7 @@ void TDDataStructures::inlineGraphIntoCallees(DSGraph &Graph) { DSGraph &CalleeGraph = *CSI->first; // Iterate through all of the call sites of this graph, cloning and merging // any nodes required by the call. - ReachabilityCloner RC(CalleeGraph, Graph, DSGraph::StripModRefBits); + ReachabilityCloner RC(CalleeGraph, Graph, 0); // Clone over any global nodes that appear in both graphs. for (DSScalarMap::global_iterator |