[llvm-commits] CVS: reopt/include/reopt/TraceToFunction.h
Brian Gaeke
gaeke at cs.uiuc.edu
Wed Jul 7 22:21:07 PDT 2004
Changes in directory reopt/include/reopt:
TraceToFunction.h updated: 1.18 -> 1.19
---
Log message:
Add LiveOutToArgMap.
---
Diffs of the changes: (+3 -1)
Index: reopt/include/reopt/TraceToFunction.h
diff -u reopt/include/reopt/TraceToFunction.h:1.18 reopt/include/reopt/TraceToFunction.h:1.19
--- reopt/include/reopt/TraceToFunction.h:1.18 Wed Jul 7 14:11:24 2004
+++ reopt/include/reopt/TraceToFunction.h Wed Jul 7 22:19:57 2004
@@ -74,9 +74,11 @@
///
ValueMap O2CMap;
- /// Map of Trace's live-in values in the MatrixFn --> arguments of TraceFn.
+ /// Map of Trace's live-in and live-out values in the MatrixFn -->
+ /// arguments of TraceFn.
///
ValueMap LiveInToArgMap;
+ ValueMap LiveOutToArgMap;
Value *getCorrespondingValue (const Value *V, bool preferLiveIn = true) {
if (isa<Constant>(V)) return const_cast<Value *> (V);
More information about the llvm-commits
mailing list