mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 22:24:54 +00:00
Add another micro-optimization. Apologies for the lack of refactoring, but I
gave up when I realized I couldn't come up with a good name for what the refactored function would be, to describe what it does. This is PR9343 test12, which is test3 with arguments reordered. Whoops! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127318 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -245,6 +245,14 @@ define i1 @urem5(i16 %X, i32 %Y) {
|
||||
; CHECK: ret i1 true
|
||||
}
|
||||
|
||||
define i1 @urem6(i32 %X, i32 %Y) {
|
||||
; CHECK: @urem6
|
||||
%A = urem i32 %X, %Y
|
||||
%B = icmp ugt i32 %Y, %A
|
||||
ret i1 %B
|
||||
; CHECK: ret i1 true
|
||||
}
|
||||
|
||||
define i1 @srem1(i32 %X) {
|
||||
; CHECK: @srem1
|
||||
%A = srem i32 %X, -5
|
||||
|
Reference in New Issue
Block a user