aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
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
commitfdaff35b428c8a9b93e3ddc6bf457e3b7f17528b (patch)
tree85994e63950658dbd3b05813d8d86830579ab55d /lib/CodeGen
parentfae1ecceff1a2b4488a93247d1f367ce200417aa (diff)
downloadexternal_llvm-fdaff35b428c8a9b93e3ddc6bf457e3b7f17528b.zip
external_llvm-fdaff35b428c8a9b93e3ddc6bf457e3b7f17528b.tar.gz
external_llvm-fdaff35b428c8a9b93e3ddc6bf457e3b7f17528b.tar.bz2
Clean up and bug fix.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40921 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/LiveInterval.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp
index 580cf44..32399ef 100644
--- a/lib/CodeGen/LiveInterval.cpp
+++ b/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;