OSDN Git Service

upgrade this test.
authorChris Lattner <sabre@nondot.org>
Fri, 1 Oct 2010 05:47:16 +0000 (05:47 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 1 Oct 2010 05:47:16 +0000 (05:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115295 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/memcpy.ll

index 2e7b2c0..421156d 100644 (file)
@@ -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