[llvm-commits] CVS: llvm/lib/Analysis/DataStructure/Steensgaard.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sat Mar 19 20:24:11 PST 2005
Changes in directory llvm/lib/Analysis/DataStructure:
Steensgaard.cpp updated: 1.48 -> 1.49
---
Log message:
-steens doesn't use the inlined globals facility.
---
Diffs of the changes: (+1 -2)
Steensgaard.cpp | 3 +--
1 files changed, 1 insertion(+), 2 deletions(-)
Index: llvm/lib/Analysis/DataStructure/Steensgaard.cpp
diff -u llvm/lib/Analysis/DataStructure/Steensgaard.cpp:1.48 llvm/lib/Analysis/DataStructure/Steensgaard.cpp:1.49
--- llvm/lib/Analysis/DataStructure/Steensgaard.cpp:1.48 Sat Mar 19 20:39:49 2005
+++ llvm/lib/Analysis/DataStructure/Steensgaard.cpp Sat Mar 19 22:23:57 2005
@@ -134,8 +134,7 @@
{ // Scope to free NodeMap memory ASAP
DSGraph::NodeMapTy NodeMap;
const DSGraph &FDSG = LDS.getDSGraph(*I);
- ResultGraph->cloneInto(FDSG, ValMap, RetValMap, NodeMap,
- DSGraph::UpdateInlinedGlobals);
+ ResultGraph->cloneInto(FDSG, ValMap, RetValMap, NodeMap, 0);
}
// Incorporate the inlined Function's ScalarMap into the global
More information about the llvm-commits
mailing list