[llvm-commits] [llvm] r159094 - /llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
Pete Cooper
peter_cooper at apple.com
Sat Jun 23 17:08:37 PDT 2012
Author: pete
Date: Sat Jun 23 19:08:36 2012
New Revision: 159094
URL: http://llvm.org/viewvc/llvm-project?rev=159094&view=rev
Log:
Remove code i'd been testing with but didn't mean to commit. Oops
Modified:
llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.cpp?rev=159094&r1=159093&r2=159094&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Sat Jun 23 19:08:36 2012
@@ -715,7 +715,6 @@
setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
- setOperationAction(ISD::FMA, (MVT::SimpleValueType)VT, Custom);
setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
@@ -10894,7 +10893,6 @@
case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
case ISD::ADD: return LowerADD(Op, DAG);
case ISD::SUB: return LowerSUB(Op, DAG);
- case ISD::FMA: return SDValue();
}
}
More information about the llvm-commits
mailing list