diff options
author | Duncan Sands <baldrick@free.fr> | 2009-04-08 16:20:57 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2009-04-08 16:20:57 +0000 |
commit | 3d0355b825fa707f76dda05bd19730c096ae743c (patch) | |
tree | c8d5e3720da6882d4a93f1e76d6b3dcabd744578 /test/CodeGen/ARM/2009-04-08-FREM.ll | |
parent | e3bc46ede58d9c02b8f1a630e70ee1c98a1e4229 (diff) |
Soft float support for FREM.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68614 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/2009-04-08-FREM.ll')
-rw-r--r-- | test/CodeGen/ARM/2009-04-08-FREM.ll | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/2009-04-08-FREM.ll b/test/CodeGen/ARM/2009-04-08-FREM.ll new file mode 100644 index 0000000000..c7e343c892 --- /dev/null +++ b/test/CodeGen/ARM/2009-04-08-FREM.ll @@ -0,0 +1,9 @@ +; RUN: llvm-as < %s | llc -march=arm + +declare i32 @printf(i8*, ...) + +define i32 @main() { + %rem_r = frem double 0.000000e+00, 0.000000e+00 ; <double> [#uses=1] + %1 = call i32 (i8*, ...)* @printf(i8* null, double %rem_r) ; <i32> [#uses=0] + ret i32 0 +} |