diff options
Diffstat (limited to 'test/CodeGen/ARM/arguments5.ll')
-rw-r--r-- | test/CodeGen/ARM/arguments5.ll | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/arguments5.ll b/test/CodeGen/ARM/arguments5.ll new file mode 100644 index 0000000000000..2000ff7b4a857 --- /dev/null +++ b/test/CodeGen/ARM/arguments5.ll @@ -0,0 +1,9 @@ +; RUN: llvm-as < %s | llc -mtriple=arm-linux-gnueabi +; RUN: llvm-as < %s | llc -mtriple=arm-apple-darwin + +define double @f(i32 %a, i128 %b) { + %tmp = call double @g(i128 %b) + ret double %tmp +} + +declare double @g(i128) |