From 51cbf3c980e921a2950766282dfd6d9b2288eadd Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Wed, 8 Aug 2007 01:00:21 +0000 Subject: [PATCH] Remove a dead assertion. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40914 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/LiveInterval.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp index 1aa02f00701..a11a8f5e44a 100644 --- a/lib/CodeGen/LiveInterval.cpp +++ b/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;