From: Craig Topper Date: Tue, 25 Apr 2017 17:40:58 +0000 (+0000) Subject: [InstCombine] Fix CHECK-LABEL in two tests. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c75072695c927f7400becdc4f144731ff91afc8;p=llvm [InstCombine] Fix CHECK-LABEL in two tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@301337 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/InstSimplify/AndOrXor.ll b/test/Transforms/InstSimplify/AndOrXor.ll index c5108217056..f9aaa4fa0c6 100644 --- a/test/Transforms/InstSimplify/AndOrXor.ll +++ b/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]]