aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-06-29 00:18:15 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-06-29 00:18:15 +0000
commita72cb0ea0925e19ed5278b400bcedfe024cdd01c (patch)
tree68e7b4acd304887e996a1224b5cc65c88929b881 /lib
parent10a7aa6dea8d862feda05098d82a7630c80c30d8 (diff)
downloadexternal_llvm-a72cb0ea0925e19ed5278b400bcedfe024cdd01c.zip
external_llvm-a72cb0ea0925e19ed5278b400bcedfe024cdd01c.tar.gz
external_llvm-a72cb0ea0925e19ed5278b400bcedfe024cdd01c.tar.bz2
No vector fneg.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37786 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/X86/X86ISelLowering.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp
index f9c19bc..91b0f3f 100644
--- a/lib/Target/X86/X86ISelLowering.cpp
+++ b/lib/Target/X86/X86ISelLowering.cpp
@@ -314,6 +314,7 @@ X86TargetLowering::X86TargetLowering(TargetMachine &TM)
setOperationAction(ISD::ADD , (MVT::ValueType)VT, Expand);
setOperationAction(ISD::SUB , (MVT::ValueType)VT, Expand);
setOperationAction(ISD::FADD, (MVT::ValueType)VT, Expand);
+ setOperationAction(ISD::FNEG, (MVT::ValueType)VT, Expand);
setOperationAction(ISD::FSUB, (MVT::ValueType)VT, Expand);
setOperationAction(ISD::MUL , (MVT::ValueType)VT, Expand);
setOperationAction(ISD::FMUL, (MVT::ValueType)VT, Expand);