summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/fnmuls.ll
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-08-10 16:48:40 +0000
committerDan Gohman <gohman@apple.com>2009-08-10 16:48:40 +0000
commit5743a3f201df1cc48bb578de693dbdc98b34993d (patch)
tree9ed7fcf2a84fed44296bba824317742f6997e297 /test/CodeGen/ARM/fnmuls.ll
parentb71d1b2fe2c0673005283b48be2f37c750ce367b (diff)
downloadexternal_llvm-5743a3f201df1cc48bb578de693dbdc98b34993d.zip
external_llvm-5743a3f201df1cc48bb578de693dbdc98b34993d.tar.gz
external_llvm-5743a3f201df1cc48bb578de693dbdc98b34993d.tar.bz2
Add nounwind keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78568 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/fnmuls.ll')
-rw-r--r--test/CodeGen/ARM/fnmuls.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/ARM/fnmuls.ll b/test/CodeGen/ARM/fnmuls.ll
index f2b5ea9..335153f 100644
--- a/test/CodeGen/ARM/fnmuls.ll
+++ b/test/CodeGen/ARM/fnmuls.ll
@@ -3,14 +3,14 @@
; 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 2
; 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 2
-define float @test1(float %a, float %b) {
+define float @test1(float %a, float %b) nounwind {
entry:
%0 = fmul float %a, %b
%1 = fsub float 0.0, %0
ret float %1
}
-define float @test2(float %a, float %b) {
+define float @test2(float %a, float %b) nounwind {
entry:
%0 = fmul float %a, %b
%1 = fmul float -1.0, %0