mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
1b344bc986
the predicate. Also, make this optz'n apply in more cases where it's safe to do so. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54876 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
402 B
LLVM
23 lines
402 B
LLVM
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep -v xor
|
|
|
|
define i1 @test1(i8 %x, i8 %y) {
|
|
%X = xor i8 %x, 128
|
|
%Y = xor i8 %y, 128
|
|
%tmp = icmp slt i8 %X, %Y
|
|
ret i1 %tmp
|
|
}
|
|
|
|
define i1 @test2(i8 %x, i8 %y) {
|
|
%X = xor i8 %x, 128
|
|
%Y = xor i8 %y, 128
|
|
%tmp = icmp ult i8 %X, %Y
|
|
ret i1 %tmp
|
|
}
|
|
|
|
define i1 @test3(i8 %x) {
|
|
%X = xor i8 %x, 128
|
|
%tmp = icmp uge i8 %X, 15
|
|
ret i1 %tmp
|
|
}
|
|
|