diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-08-08 01:00:21 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-08-08 01:00:21 +0000 |
commit | c236617ea00eab47582b71ff9e07f339336f5a5e (patch) | |
tree | d4b136945fefcb462df959cf06e9d8b8a5ca1a85 /llvm | |
parent | 0d0fee269adfb449f998a630c45f488154cbd1f4 (diff) | |
download | bcm5719-llvm-c236617ea00eab47582b71ff9e07f339336f5a5e.tar.gz bcm5719-llvm-c236617ea00eab47582b71ff9e07f339336f5a5e.zip |
Remove a dead assertion.
llvm-svn: 40914
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/CodeGen/LiveInterval.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index 1aa02f00701..a11a8f5e44a 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/lib/CodeGen/LiveInterval.cpp @@ -300,7 +300,6 @@ 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) { - assert(ValueNumberInfo[i].def != ~2U); if (ValueNumberInfo[i].def == ~1U) continue; // tombstone value # if (i != (unsigned)LHSValNoAssignments[i]) { MustMapCurValNos = true; |