Fix a thinko: When lowering fneg with xor, bitcast the operands
[oota-llvm.git] / test / CodeGen / X86 / fast-isel-fneg.ll
index 41b288ba1de4c6c6dcb7dcb284b240f0615df9fa..02c5e4e2299bcab413ec324e0468544103f30e46 100644 (file)
@@ -1,14 +1,14 @@
-; RUN: llvm-as < %s | llc -fast-isel -march=x86-64 | FileCheck %s
+; RUN: llvm-as < %s | llc -fast-isel -fast-isel-abort -march=x86-64 | FileCheck %s
 
 ; CHECK: doo:
-; CHECK: xorpd
+; CHECK: xor
 define double @doo(double %x) nounwind {
   %y = fsub double -0.0, %x
   ret double %y
 }
 
 ; CHECK: foo:
-; CHECK: xorps
+; CHECK: xor
 define float @foo(float %x) nounwind {
   %y = fsub float -0.0, %x
   ret float %y