[InstCombine] Fix CHECK-LABEL in two tests.

llvm-svn: 301337
diff --git a/llvm/test/Transforms/InstSimplify/AndOrXor.ll b/llvm/test/Transforms/InstSimplify/AndOrXor.ll
index c510821..f9aaa4f 100644
--- a/llvm/test/Transforms/InstSimplify/AndOrXor.ll
+++ b/llvm/test/Transforms/InstSimplify/AndOrXor.ll
@@ -538,7 +538,7 @@
 }
 
 define i32 @test45_commuted_and(i32 %a, i32 %b) {
-; CHECK-LABEL: @test45(
+; CHECK-LABEL: @test45_commuted_and(
 ; CHECK-NEXT:    [[NEGB:%.*]] = xor i32 [[B:%.*]], -1
 ; CHECK-NEXT:    [[XOR:%.*]] = xor i32 [[A:%.*]], [[NEGB]]
 ; CHECK-NEXT:    ret i32 [[XOR]]
@@ -571,7 +571,7 @@
 ; (~A & ~B) | (~A ^ B) -> ~A ^ B
 
 define i32 @test46_commuted_and(i32 %a, i32 %b) {
-; CHECK-LABEL: @test45(
+; CHECK-LABEL: @test46_commuted_and(
 ; CHECK-NEXT:    [[NEGB:%.*]] = xor i32 [[B:%.*]], -1
 ; CHECK-NEXT:    [[XOR:%.*]] = xor i32 [[A:%.*]], [[NEGB]]
 ; CHECK-NEXT:    ret i32 [[XOR]]