diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-04-17 19:07:39 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-04-17 19:07:39 +0000 |
commit | a4c2290e5f80079f2c0c336d4f008686c7f74c8c (patch) | |
tree | ecb37c31b7bb70831714037fc4569dd09a4e7976 /llvm/test/CodeGen/ARM/ret_i64_arg_split.ll | |
parent | af9767195458dca97360d1056d6ab7aec6d5ad74 (diff) | |
download | bcm5719-llvm-a4c2290e5f80079f2c0c336d4f008686c7f74c8c.tar.gz bcm5719-llvm-a4c2290e5f80079f2c0c336d4f008686c7f74c8c.zip |
Use CallConvLower.h and TableGen descriptions of the calling conventions
for ARM. Patch by Sandeep Patel.
llvm-svn: 69371
Diffstat (limited to 'llvm/test/CodeGen/ARM/ret_i64_arg_split.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/ret_i64_arg_split.ll | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/ARM/ret_i64_arg_split.ll b/llvm/test/CodeGen/ARM/ret_i64_arg_split.ll new file mode 100644 index 00000000000..5bd5cb2a230 --- /dev/null +++ b/llvm/test/CodeGen/ARM/ret_i64_arg_split.ll @@ -0,0 +1,6 @@ +; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2 + +define i64 @test_i64_arg_split(i64 %a1, i32 %a2, i64 %a3) { + ret i64 %a3 +} + |