Modernize testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6600 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-06-04 04:47:40 +00:00
parent c4d10ebcd7
commit 1812a9b92d

View File

@ -8,46 +8,46 @@
%X = uninitialized global int
bool "test1"(int %A) {
bool %test1(int %A) {
%B = seteq int %A, %A
%C = seteq int* %X, null ; Never true
%D = and bool %B, %C
ret bool %D
}
bool "test2"(int %A) {
bool %test2(int %A) {
%B = setne int %A, %A
%C = setne int* %X, null ; Never false
%D = or bool %B, %C
ret bool %D
}
bool "test3"(int %A) {
bool %test3(int %A) {
%B = setlt int %A, %A
ret bool %B
}
bool "test4"(int %A) {
bool %test4(int %A) {
%B = setgt int %A, %A
ret bool %B
}
bool "test5"(int %A) {
bool %test5(int %A) {
%B = setle int %A, %A
ret bool %B
}
bool "test6"(int %A) {
bool %test6(int %A) {
%B = setge int %A, %A
ret bool %B
}
bool "test7"(uint %A) {
bool %test7(uint %A) {
%B = setge uint %A, 0 ; true
ret bool %B
}
bool "test8"(uint %A) {
bool %test8(uint %A) {
%B = setlt uint %A, 0 ; false
ret bool %B
}