Optimize bitwise even/odd test (-x&1 -> x&1) to not use negation.
[oota-llvm.git] / test / Transforms / InstCombine / memcpy-2.ll
index 4a8a02018f5e742f7c34d8e87bce2950b6c8e0a6..a31854c01758dcfc6ab2768be7463ebadc5e73e4 100644 (file)
@@ -9,7 +9,7 @@ declare i8 @memcpy(i8*, i8*, i32)
 ; Check that memcpy functions with the wrong prototype aren't simplified.
 
 define i8 @test_no_simplify1(i8* %mem1, i8* %mem2, i32 %size) {
-; CHECK: @test_no_simplify1
+; CHECK-LABEL: @test_no_simplify1(
   %ret = call i8 @memcpy(i8* %mem1, i8* %mem2, i32 %size)
 ; CHECK: call i8 @memcpy
   ret i8 %ret