[x32] Fix FrameIndex check in SelectLEA64_32Addr
[oota-llvm.git] / test / CodeGen / X86 / neg_fp.ll
index 55c76549ffe284497a5eee8460d7e80dbca6ce73..efb02f8832e6d746e7514c40174168be0f9c7604 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse41 -o %t -f
+; RUN: llc < %s -march=x86 -mattr=+sse4.1 -o %t
 ; RUN: grep xorps %t | count 1
 
 ; Test that when we don't -enable-unsafe-fp-math, we don't do the optimization
@@ -6,7 +6,7 @@
 
 define float @negfp(float %a, float %b) {
 entry:
-       %sub = sub float %a, %b         ; <float> [#uses=1]
-       %neg = sub float -0.000000e+00, %sub            ; <float> [#uses=1]
+       %sub = fsub float %a, %b                ; <float> [#uses=1]
+       %neg = fsub float -0.000000e+00, %sub           ; <float> [#uses=1]
        ret float %neg
-}
\ No newline at end of file
+}