[llvm-commits] CVS: llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
Chris Lattner
lattner at cs.uiuc.edu
Fri Jul 23 21:32:32 PDT 2004
Changes in directory llvm/lib/CodeGen:
LiveIntervalAnalysis.cpp updated: 1.109 -> 1.110
---
Log message:
whoops, didn't mean to remove this
---
Diffs of the changes: (+3 -1)
Index: llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
diff -u llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.109 llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.110
--- llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:1.109 Fri Jul 23 22:32:06 2004
+++ llvm/lib/CodeGen/LiveIntervalAnalysis.cpp Fri Jul 23 23:32:22 2004
@@ -549,7 +549,9 @@
LiveInterval &IntB = getInterval(regB);
assert(IntA.reg == regA && IntB.reg == regB &&
"Register mapping is horribly broken!");
-
+
+ DEBUG(std::cerr << "\t\tInspecting " << IntA << " and " << IntB << ": ");
+
// If two intervals contain a single value and are joined by a copy, it
// does not matter if the intervals overlap, they can always be joined.
bool TriviallyJoinable =
More information about the llvm-commits
mailing list