mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-23 20:34:58 +00:00
Add a test for my change to disable reassociation for i1 types.
llvm-svn: 95465
This commit is contained in:
parent
102b8a3103
commit
60fb5a2446
@ -203,4 +203,14 @@ define i32 @test14(i32 %X1, i32 %X2) {
|
||||
; CHECK-NEXT: ret i32
|
||||
}
|
||||
|
||||
; Do not reassociate expressions of type i1
|
||||
define i32 @test15(i32 %X1, i32 %X2, i32 %X3) {
|
||||
%A = icmp ne i32 %X1, 0
|
||||
%B = icmp slt i32 %X2, %X3
|
||||
%C = and i1 %A, %B
|
||||
%D = select i1 %C, i32 %X1, i32 0
|
||||
ret i32 %D
|
||||
; CHECK: @test15
|
||||
; CHECK: and i1 %A, %B
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user