mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-13 15:11:39 +00:00
The instcombiner should canonicalize comparisons.
llvm-svn: 11899
This commit is contained in:
parent
ddfd27ff97
commit
7ecd81c8e7
@ -0,0 +1,27 @@
|
||||
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep 'setne\|setle\|setge'
|
||||
|
||||
int %test1(uint %X, uint %Y) {
|
||||
%C = setne uint %X, %Y
|
||||
br bool %C, label %T, label %F
|
||||
T:
|
||||
ret int 12
|
||||
F:
|
||||
ret int 123
|
||||
}
|
||||
|
||||
int %test2(uint %X, uint %Y) {
|
||||
%C = setle uint %X, %Y
|
||||
br bool %C, label %T, label %F
|
||||
T:
|
||||
ret int 12
|
||||
F:
|
||||
ret int 123
|
||||
}
|
||||
int %test3(uint %X, uint %Y) {
|
||||
%C = setge uint %X, %Y
|
||||
br bool %C, label %T, label %F
|
||||
T:
|
||||
ret int 12
|
||||
F:
|
||||
ret int 123
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user