commit | a124c9124204f3eebaa84f5e8b057acb65afcdb8 | [log] [tgz] |
---|---|---|
author | Rafael Espindola <rafael.espindola@gmail.com> | Thu Jun 01 22:01:25 2006 +0000 |
committer | Rafael Espindola <rafael.espindola@gmail.com> | Thu Jun 01 22:01:25 2006 +0000 |
tree | 28e893e79f3dc8bf5ad1d65b69cd6d199ed2f5c9 | |
parent | 3f1c2c0e663124f3e5a51fab89c6b138a8f8d627 [diff] [blame] |
added some tests for argument passing llvm-svn: 28644
diff --git a/llvm/test/Regression/CodeGen/ARM/ret_arg3.ll b/llvm/test/Regression/CodeGen/ARM/ret_arg3.ll new file mode 100644 index 0000000..c1fc092 --- /dev/null +++ b/llvm/test/Regression/CodeGen/ARM/ret_arg3.ll
@@ -0,0 +1,4 @@ +; RUN: llvm-as < %s | llc -march=arm +int %test(int %a1, int %a2, int %a3) { + ret int %a3 +}