diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-10 16:48:40 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-10 16:48:40 +0000 |
commit | 5743a3f201df1cc48bb578de693dbdc98b34993d (patch) | |
tree | 9ed7fcf2a84fed44296bba824317742f6997e297 /test/CodeGen/ARM/fnmuls.ll | |
parent | b71d1b2fe2c0673005283b48be2f37c750ce367b (diff) | |
download | external_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.ll | 4 |
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 |