mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Add an explicit test that we now fold cttz.i32(..., true) >> 5 -> 0.
This is a result of Benjamin's work on ValueTracking. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147259 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
49064ff770
commit
d62414c654
@ -201,16 +201,22 @@ entry:
|
||||
; CHECK-NEXT: store volatile i1 %pop.cmp, i1* %c
|
||||
}
|
||||
|
||||
|
||||
define i32 @cttz_simplify1(i32 %x) nounwind readnone ssp {
|
||||
%tmp1 = tail call i32 @llvm.ctlz.i32(i32 %x, i1 false) ; <i32> [#uses=1]
|
||||
%shr3 = lshr i32 %tmp1, 5 ; <i32> [#uses=1]
|
||||
define i32 @cttz_simplify1a(i32 %x) nounwind readnone ssp {
|
||||
%tmp1 = tail call i32 @llvm.ctlz.i32(i32 %x, i1 false)
|
||||
%shr3 = lshr i32 %tmp1, 5
|
||||
ret i32 %shr3
|
||||
|
||||
; CHECK: @cttz_simplify1
|
||||
|
||||
; CHECK: @cttz_simplify1a
|
||||
; CHECK: icmp eq i32 %x, 0
|
||||
; CHECK-NEXT: zext i1
|
||||
; CHECK-NEXT: zext i1
|
||||
; CHECK-NEXT: ret i32
|
||||
}
|
||||
|
||||
define i32 @cttz_simplify1b(i32 %x) nounwind readnone ssp {
|
||||
%tmp1 = tail call i32 @llvm.ctlz.i32(i32 %x, i1 true)
|
||||
%shr3 = lshr i32 %tmp1, 5
|
||||
ret i32 %shr3
|
||||
|
||||
; CHECK: @cttz_simplify1b
|
||||
; CHECK-NEXT: ret i32 0
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user