Enable all Hexagon tests.
[oota-llvm.git] / test / CodeGen / X86 / fast-isel-fneg.ll
index 41b288ba1de4c6c6dcb7dcb284b240f0615df9fa..f42a4a245bc880efbed0b38bd92e7186b9ddff1c 100644 (file)
@@ -1,14 +1,15 @@
-; RUN: llvm-as < %s | llc -fast-isel -march=x86-64 | FileCheck %s
+; RUN: llc < %s -fast-isel -fast-isel-abort -mtriple=x86_64-apple-darwin10 | FileCheck %s
+; RUN: llc < %s -fast-isel -march=x86 -mattr=+sse2 | grep xor | count 2
 
 ; 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