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/Transforms | |
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/Transforms')
-rw-r--r-- | test/Transforms/IndVarSimplify/casted-argument.ll | 2 | ||||
-rw-r--r-- | test/Transforms/InstCombine/objsize.ll | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/Transforms/IndVarSimplify/casted-argument.ll b/test/Transforms/IndVarSimplify/casted-argument.ll index dfefe1d..a5e002b 100644 --- a/test/Transforms/IndVarSimplify/casted-argument.ll +++ b/test/Transforms/IndVarSimplify/casted-argument.ll @@ -47,4 +47,4 @@ if.end54: ; preds = %if.end54, %if.else declare void @bcopy(i8* nocapture) nounwind -declare void @bcopy_4038(i8*, i32) nounwind +declare void @bcopy_4038(i8*, i8*, i32) nounwind diff --git a/test/Transforms/InstCombine/objsize.ll b/test/Transforms/InstCombine/objsize.ll index 52294d8..664701b 100644 --- a/test/Transforms/InstCombine/objsize.ll +++ b/test/Transforms/InstCombine/objsize.ll @@ -145,8 +145,8 @@ entry: ret void } -declare i8* @__memset_chk(i8*, i32, i64, i64) nounwind +declare i8* @__memset_chk(i8*, i32, i32, i32) nounwind declare noalias i8* @malloc(i32) nounwind -declare i32 @llvm.objectsize.i32(i8*, i1) nounwind readonly
\ No newline at end of file +declare i32 @llvm.objectsize.i32(i8*, i1) nounwind readonly |