summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/LiveInterval.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-08-08 05:56:18 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-08-08 05:56:18 +0000
commit103947125c0d6501f027c80eb81a7473241e28a4 (patch)
tree56085585ee3e9f56670614f6958efc309adc38cc /llvm/lib/CodeGen/LiveInterval.cpp
parentc63d4c2e4e43add22b5cc6a41a93cfa83368f15f (diff)
downloadbcm5719-llvm-103947125c0d6501f027c80eb81a7473241e28a4.tar.gz
bcm5719-llvm-103947125c0d6501f027c80eb81a7473241e28a4.zip
Clean up and bug fix.
llvm-svn: 40921
Diffstat (limited to 'llvm/lib/CodeGen/LiveInterval.cpp')
-rw-r--r--llvm/lib/CodeGen/LiveInterval.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp
index 580cf443837..32399ef2fc7 100644
--- a/llvm/lib/CodeGen/LiveInterval.cpp
+++ b/llvm/lib/CodeGen/LiveInterval.cpp
@@ -300,7 +300,7 @@ void LiveInterval::join(LiveInterval &Other, int *LHSValNoAssignments,
// we want to avoid the interval scan if not.
bool MustMapCurValNos = false;
for (unsigned i = 0, e = getNumValNums(); i != e; ++i) {
- //if (ValueNumberInfo[i].def == ~1U) continue; // tombstone value #
+ if (ValueNumberInfo[i].def == ~1U) continue; // tombstone value #
if (i != (unsigned)LHSValNoAssignments[i]) {
MustMapCurValNos = true;
break;
OpenPOWER on IntegriCloud