summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-03-21 06:01:05 +0000
committerChris Lattner <sabre@nondot.org>2008-03-21 06:01:05 +0000
commit7e59a30e9fb5b365c062b6e08aa399adb29994e7 (patch)
treeb69f7274c5868d84b903b82c49310b9cd2cb7579 /llvm/lib
parentb6f04a3e0a4757a4464f49452a04225fe36f3a18 (diff)
downloadbcm5719-llvm-7e59a30e9fb5b365c062b6e08aa399adb29994e7.tar.gz
bcm5719-llvm-7e59a30e9fb5b365c062b6e08aa399adb29994e7.zip
disable a bogus assertion.
llvm-svn: 48633
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/X86/X86FloatingPoint.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/X86FloatingPoint.cpp b/llvm/lib/Target/X86/X86FloatingPoint.cpp
index d9ab1ed4151..2070cc5d133 100644
--- a/llvm/lib/Target/X86/X86FloatingPoint.cpp
+++ b/llvm/lib/Target/X86/X86FloatingPoint.cpp
@@ -1022,8 +1022,8 @@ void FPS::handleSpecialFP(MachineBasicBlock::iterator &I) {
MachineOperand &Op = MI->getOperand(i);
if (!Op.isReg() || Op.getReg() < X86::FP0 || Op.getReg() > X86::FP6)
continue;
- assert(Op.isUse() && Op.isKill() &&
- "Ret only defs operands, and values aren't live beyond it");
+// assert(Op.isUse() && Op.isKill() &&
+// "Ret only defs operands, and values aren't live beyond it");
if (FirstFPRegOp == ~0U)
FirstFPRegOp = getFPReg(Op);
OpenPOWER on IntegriCloud