summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/fnmuls.ll
diff options
context:
space:
mode:
authorDavid Goodwin <david_goodwin@apple.com>2009-08-04 17:53:06 +0000
committerDavid Goodwin <david_goodwin@apple.com>2009-08-04 17:53:06 +0000
commit42a83f2d15cbbc08f5be19856198e3c885221e9c (patch)
treeeca061ad8695529066fa894eb0b7cc417bbf253b /test/CodeGen/ARM/fnmuls.ll
parentc7a6da6e1469100937851cc3741a36b5850e54da (diff)
downloadllvm-42a83f2d15cbbc08f5be19856198e3c885221e9c.tar.gz
llvm-42a83f2d15cbbc08f5be19856198e3c885221e9c.tar.bz2
llvm-42a83f2d15cbbc08f5be19856198e3c885221e9c.tar.xz
Initial support for single-precision FP using NEON. Added "neonfp" attribute to enable. Added patterns for some binary FP operations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78081 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/fnmuls.ll')
-rw-r--r--test/CodeGen/ARM/fnmuls.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/fnmuls.ll b/test/CodeGen/ARM/fnmuls.ll
new file mode 100644
index 0000000000..7130aa6be6
--- /dev/null
+++ b/test/CodeGen/ARM/fnmuls.ll
@@ -0,0 +1,12 @@
+; XFAIL: *
+; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2 | grep -E {fnmuls\\W*s\[0-9\]+,\\W*s\[0-9\]+,\\W*s\[0-9\]+} | count 1
+; RUN: llvm-as < %s | llc -march=arm -mattr=+neon,+neonfp | grep -E {fnmuls\\W*s\[0-9\]+,\\W*s\[0-9\]+,\\W*s\[0-9\]+} | count 1
+; RUN: llvm-as < %s | llc -march=arm -mattr=+neon,-neonfp | grep -E {fnmuls\\W*s\[0-9\]+,\\W*s\[0-9\]+,\\W*s\[0-9\]+} | count 1
+
+define float @test(float %a, float %b) {
+entry:
+ %0 = fmul float %a, %b
+ %1 = fsub float 0.0, %0
+ ret float %1
+}
+