diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-02-17 20:02:20 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-02-17 20:02:20 +0000 |
commit | f697c038834f36190d6d93353ea3b1fababe6faf (patch) | |
tree | 0d6ee48a1c954dd09ab948fd4da9acee2a1f3239 /llvm/test/CodeGen/ARM/ret_arg4.ll | |
parent | 1f6520842c2873aff772a39d53582c469b4f399d (diff) | |
download | bcm5719-llvm-f697c038834f36190d6d93353ea3b1fababe6faf.tar.gz bcm5719-llvm-f697c038834f36190d6d93353ea3b1fababe6faf.zip |
Remove llvm-upgrade.
llvm-svn: 47238
Diffstat (limited to 'llvm/test/CodeGen/ARM/ret_arg4.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/ret_arg4.ll | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/ARM/ret_arg4.ll b/llvm/test/CodeGen/ARM/ret_arg4.ll index e04f29695ba..a9c66e9e98d 100644 --- a/llvm/test/CodeGen/ARM/ret_arg4.ll +++ b/llvm/test/CodeGen/ARM/ret_arg4.ll @@ -1,4 +1,5 @@ -; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -int %test(int %a1, int %a2, int %a3, int %a4) { - ret int %a4 +; RUN: llvm-as < %s | llc -march=arm + +define i32 @test(i32 %a1, i32 %a2, i32 %a3, i32 %a4) { + ret i32 %a4 } |