Fix inserting new elements in a specified location.
[oota-llvm.git] / test / Transforms / InstCombine / 2012-09-24-MemcpyFromGlobalCrash.ll
index a31aa822e6a51e010155768e4d521c78b4cb5196..35b62850c626258d0494e5161b45ae7d401c923a 100644 (file)
@@ -8,9 +8,9 @@ declare void @bar(i8*)
 declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture, i64, i32, i1) nounwind
 
 define void @test() {
-; CHECK: @test
+; CHECK-LABEL: @test(
 ; CHECK: llvm.memcpy
-; CHECK ret void
+; CHECK: ret void
   %A = alloca [100 x i8]
   %a = getelementptr inbounds [100 x i8]* %A, i64 0, i64 0
   call void @llvm.memcpy.p0i8.p0i8.i64(i8* %a, i8* getelementptr inbounds ([100 x i8]* @G, i64 0, i32 0), i64 100, i32 4, i1 false)