mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-03 17:24:24 +00:00
[InstCombine] add another test for PR32949; NFC
A patch for the InstSimplify variant of this bug is up for review here: https://reviews.llvm.org/D32954 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@302434 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
592063190f
commit
f3922dff07
@ -695,6 +695,19 @@ define i1 @test48(i32 %X, i32 %Y, i32 %Z) {
|
||||
ret i1 %C
|
||||
}
|
||||
|
||||
; FIXME: The above transform only works for equality predicates.
|
||||
|
||||
define i1 @PR32949(i32 %X, i32 %Y, i32 %Z) {
|
||||
; CHECK-LABEL: @PR32949(
|
||||
; CHECK-NEXT: [[C:%.*]] = icmp sgt i32 %X, %Y
|
||||
; CHECK-NEXT: ret i1 [[C]]
|
||||
;
|
||||
%A = sdiv exact i32 %X, %Z
|
||||
%B = sdiv exact i32 %Y, %Z
|
||||
%C = icmp sgt i32 %A, %B
|
||||
ret i1 %C
|
||||
}
|
||||
|
||||
; PR8469
|
||||
define <2 x i1> @test49(<2 x i32> %tmp3) {
|
||||
; CHECK-LABEL: @test49(
|
||||
|
Loading…
x
Reference in New Issue
Block a user