diff options
author | Dan Gohman <gohman@apple.com> | 2009-04-23 15:22:28 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-04-23 15:22:28 +0000 |
commit | e22d503ee5d992e30d94903b17f15ed16cfeaaf8 (patch) | |
tree | 6af21ee4a74954e4cf38748083cc8d6d60677889 | |
parent | 752ec7da506f5d41c08bd37e195750b57550ce68 (diff) |
Fix an error in this test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69893 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/IndVarSimplify/casted-argument.ll | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Transforms/IndVarSimplify/casted-argument.ll b/test/Transforms/IndVarSimplify/casted-argument.ll index 0a14c3e787..6d7aaa9161 100644 --- a/test/Transforms/IndVarSimplify/casted-argument.ll +++ b/test/Transforms/IndVarSimplify/casted-argument.ll @@ -40,9 +40,11 @@ if.end54: ; preds = %if.end54, %if.else %sub.ptr.lhs.cast45.pn = ptrtoint i8* %to to i32 ; <i32> [#uses=1] %sub.ptr.sub47.pn = sub i32 %sub.ptr.rhs.cast46.pn, %sub.ptr.lhs.cast45.pn ; <i32> [#uses=1] %sub.ptr4912 = getelementptr i8* %sub.ptr4912.pn, i32 %sub.ptr.sub47.pn ; <i8*> [#uses=2] - tail call void @bcopy(i8* %sub.ptr4912, i8* %sub.ptr7, i32 0) nounwind + tail call void @bcopy_4038(i8* %sub.ptr4912, i8* %sub.ptr7, i32 0) nounwind %sub.ptr = getelementptr i8* %sub.ptr7, i32 %sub.ptr.rhs.cast40 ; <i8*> [#uses=1] br label %if.end54 } declare void @bcopy(i8* nocapture) nounwind + +declare void @bcopy_4038(i8*, i32) nounwind |