1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 23:42:52 +01:00
llvm-mirror/test/Regression/Transforms/InstCombine/setcc-strength-reduce.ll

32 lines
705 B
LLVM
Raw Normal View History

; This test ensures that "strength reduction" of conditional expressions are
; working. Basically this boils down to converting setlt,gt,le,ge instructions
; into equivalent setne,eq instructions.
;
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep -v seteq | grep -v setne | not grep set
2003-07-24 21:42:28 +02:00
bool %test1(uint %A) {
%B = setge uint %A, 1 ; setne %A, 0
ret bool %B
}
2003-07-24 21:42:28 +02:00
bool %test2(uint %A) {
%B = setgt uint %A, 0 ; setne %A, 0
ret bool %B
}
2003-07-24 21:42:28 +02:00
bool %test3(sbyte %A) {
%B = setge sbyte %A, -127 ; setne %A, -128
ret bool %B
}
bool %test4(sbyte %A) {
%B = setle sbyte %A, 126 ; setne %A, 127
ret bool %B
}
bool %test5(sbyte %A) {
%B = setlt sbyte %A, 127 ; setne %A, 127
ret bool %B
}