mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-01 16:22:41 +00:00
fix checks
update_test_checks.py got confused matching the variable names. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@271844 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1518a5c65d
commit
7ae69db193
@ -111,7 +111,7 @@ define i1 @test12(i1 %A) {
|
||||
define i1 @test13(i1 %A, i1 %B) {
|
||||
; CHECK-LABEL: @test13(
|
||||
; CHECK-NEXT: [[CTMP:%.*]] = xor i1 %B, true
|
||||
; CHECK-NEXT: [[C:%.*]] = or i1 [[C:%.*]]tmp, %A
|
||||
; CHECK-NEXT: [[C:%.*]] = or i1 [[CTMP]], %A
|
||||
; CHECK-NEXT: ret i1 [[C]]
|
||||
;
|
||||
%C = icmp uge i1 %A, %B
|
||||
@ -131,7 +131,7 @@ define <2 x i1> @test13vec(<2 x i1> %A, <2 x i1> %B) {
|
||||
define i1 @test14(i1 %A, i1 %B) {
|
||||
; CHECK-LABEL: @test14(
|
||||
; CHECK-NEXT: [[CTMP:%.*]] = xor i1 %A, %B
|
||||
; CHECK-NEXT: [[C:%.*]] = xor i1 [[C:%.*]]tmp, true
|
||||
; CHECK-NEXT: [[C:%.*]] = xor i1 [[CTMP]], true
|
||||
; CHECK-NEXT: ret i1 [[C]]
|
||||
;
|
||||
%C = icmp eq i1 %A, %B
|
||||
@ -192,7 +192,7 @@ endif:
|
||||
define i1 @test19(i1 %A, i1 %B) {
|
||||
; CHECK-LABEL: @test19(
|
||||
; CHECK-NEXT: [[CTMP:%.*]] = xor i1 %A, %B
|
||||
; CHECK-NEXT: [[C:%.*]] = xor i1 [[C:%.*]]tmp, true
|
||||
; CHECK-NEXT: [[C:%.*]] = xor i1 [[CTMP]], true
|
||||
; CHECK-NEXT: ret i1 [[C]]
|
||||
;
|
||||
%a = zext i1 %A to i32
|
||||
|
Loading…
x
Reference in New Issue
Block a user