[x86] Rename avx-{s,z}ext.ll to vector-{s,z}ext.ll.
[oota-llvm.git] / test / CodeGen / X86 / fast-isel-fneg.ll
index 15d4772927d16412646d762799f7fdff48972042..8b38587164fef50813fb9c1fbcb52dc8bdf718a7 100644 (file)
@@ -1,14 +1,19 @@
-; RUN: llc < %s -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 | FileCheck --check-prefix=SSE2 %s
 
-; CHECK: doo:
-; CHECK: xorpd
+; SSE2: xor
+; SSE2: xor
+; SSE2-NOT: xor
+
+; CHECK-LABEL: doo:
+; CHECK: xor
 define double @doo(double %x) nounwind {
   %y = fsub double -0.0, %x
   ret double %y
 }
 
-; CHECK: foo:
-; CHECK: xorps
+; CHECK-LABEL: foo:
+; CHECK: xor
 define float @foo(float %x) nounwind {
   %y = fsub float -0.0, %x
   ret float %y