Add more strength reduction testcases

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3283 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-08-09 23:33:58 +00:00
parent 389694834a
commit f8e2cf9221

View File

@ -22,3 +22,13 @@ 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
}