aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/LiveIntervalAnalysis.cpp
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2012-02-15 19:04:53 +0000
committerLang Hames <lhames@gmail.com>2012-02-15 19:04:53 +0000
commit862fd5f77a1657380242cdcb9b0a7f9225dae426 (patch)
treea5fea85c5e008bd435b26b1a096fb988ffff2fc7 /lib/CodeGen/LiveIntervalAnalysis.cpp
parentebafa0c61170682ec0d7025f46f187a164b0db7e (diff)
Remove overly conservative assert.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150608 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveIntervalAnalysis.cpp')
-rw-r--r--lib/CodeGen/LiveIntervalAnalysis.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp
index f99f8cfbc9..5e721bc4fc 100644
--- a/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -435,7 +435,6 @@ void LiveIntervals::handlePhysicalRegisterDef(MachineBasicBlock *MBB,
// FIXME: We need saner rules for reserved regs.
if (isReserved(interval.reg)) {
- assert(!isRegLiveOutOf(MBB, interval.reg) && "Reserved reg live-out?");
end = start.getDeadSlot();
} else {
// Unreserved, unallocable registers like EFLAGS can be live across basic