diff options
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/Transforms/InstSimplify/AndOrXor.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/InstSimplify/AndOrXor.ll b/llvm/test/Transforms/InstSimplify/AndOrXor.ll index c5108217056..f9aaa4fa0c6 100644 --- a/llvm/test/Transforms/InstSimplify/AndOrXor.ll +++ b/llvm/test/Transforms/InstSimplify/AndOrXor.ll @@ -538,7 +538,7 @@ define i32 @test45(i32 %a, i32 %b) { } 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 @@ define i32 @test46(i32 %a, i32 %b) { ; (~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]] |