aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Goodwin <david_goodwin@apple.com>2009-08-10 22:31:04 +0000
committerDavid Goodwin <david_goodwin@apple.com>2009-08-10 22:31:04 +0000
commitaeb66fe54ea23a28aa5d930b10e8cc6da44aeae8 (patch)
tree0c604af500f6768eaa3490cf98a22f4732ca6806
parent1490d0f20998938edba743416c526df531fca17e (diff)
Fix test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78606 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/ARM/fnmscs.ll3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/CodeGen/ARM/fnmscs.ll b/test/CodeGen/ARM/fnmscs.ll
index c205627465..251d22a85e 100644
--- a/test/CodeGen/ARM/fnmscs.ll
+++ b/test/CodeGen/ARM/fnmscs.ll
@@ -1,4 +1,3 @@
-; XFAIL: *
; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2 | grep -E {fnmscs\\W*s\[0-9\]+,\\W*s\[0-9\]+,\\W*s\[0-9\]+} | count 2
; RUN: llvm-as < %s | llc -march=arm -mattr=+neon,+neonfp | grep -E {fnmscs\\W*s\[0-9\]+,\\W*s\[0-9\]+,\\W*s\[0-9\]+} | count 2
; RUN: llvm-as < %s | llc -march=arm -mattr=+neon,-neonfp | grep -E {fnmscs\\W*s\[0-9\]+,\\W*s\[0-9\]+,\\W*s\[0-9\]+} | count 2
@@ -8,7 +7,7 @@
define float @test1(float %acc, float %a, float %b) nounwind {
entry:
%0 = fmul float %a, %b
- %1 = fsub float 0.0, %0
+ %1 = fsub float -0.0, %0
%2 = fsub float %1, %acc
ret float %2
}