diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2010-04-17 21:29:25 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2010-04-17 21:29:25 +0000 |
commit | a9ea67e9c0a3fcc0697c1981ec3f403827856500 (patch) | |
tree | e234a1ca39834ba0c3f48b422468b962a3704828 /test/CodeGen | |
parent | 8f15f6a55b632e03abf7b1f86cb91453d722ca72 (diff) | |
download | external_llvm-a9ea67e9c0a3fcc0697c1981ec3f403827856500.zip external_llvm-a9ea67e9c0a3fcc0697c1981ec3f403827856500.tar.gz external_llvm-a9ea67e9c0a3fcc0697c1981ec3f403827856500.tar.bz2 |
Fix declarations in a few more tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101676 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/ARM/arguments7.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/ARM/arguments8.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/ARM/arguments7.ll b/test/CodeGen/ARM/arguments7.ll index 038e417..fa97ee8 100644 --- a/test/CodeGen/ARM/arguments7.ll +++ b/test/CodeGen/ARM/arguments7.ll @@ -6,4 +6,4 @@ define double @f(i32 %a1, i32 %a2, i32 %a3, i32 %a4, i32 %a5, double %b) { ret double %tmp } -declare double @g(double) +declare double @g(i32, i32, i32, i32, double) diff --git a/test/CodeGen/ARM/arguments8.ll b/test/CodeGen/ARM/arguments8.ll index 6999a4d..abe059b 100644 --- a/test/CodeGen/ARM/arguments8.ll +++ b/test/CodeGen/ARM/arguments8.ll @@ -6,4 +6,4 @@ define i64 @f(i32 %a1, i32 %a2, i32 %a3, i32 %a4, i32 %a5, i64 %b) { ret i64 %tmp } -declare i64 @g(i64) +declare i64 @g(i32, i32, i32, i32, i64) |