diff options
author | Chris Lattner <sabre@nondot.org> | 2010-10-01 05:47:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-10-01 05:47:16 +0000 |
commit | e94aa76d2a3e1a4bb5090cb807700593e4530c63 (patch) | |
tree | f6bc4db10f2d90dae204ecc61f1d4a363a4927bb | |
parent | 2831a194954cb4a79049e8a666d246a9a1662b92 (diff) |
upgrade this test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115295 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/InstCombine/memcpy.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/InstCombine/memcpy.ll b/test/Transforms/InstCombine/memcpy.ll index 2e7b2c0bb4..421156d771 100644 --- a/test/Transforms/InstCombine/memcpy.ll +++ b/test/Transforms/InstCombine/memcpy.ll @@ -1,9 +1,9 @@ ; RUN: opt < %s -instcombine -S | FileCheck %s -declare void @llvm.memcpy.i32(i8*, i8*, i32, i32) +declare void @llvm.memcpy.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind define void @test4(i8* %a) { - tail call void @llvm.memcpy.i32( i8* %a, i8* %a, i32 100, i32 1 ) + tail call void @llvm.memcpy.p0i8.p0i8.i32(i8* %a, i8* %a, i32 100, i32 1, i1 false) ret void } ; CHECK: define void @test4 |