I must have missed these when eliminating the cast to bool cannonicalizations

llvm-svn: 7829
This commit is contained in:
Chris Lattner 2003-08-13 20:17:41 +00:00
parent 3ac7c26a1c
commit dad4e27046
1 changed files with 2 additions and 2 deletions

View File

@ -49,13 +49,13 @@ ubyte %test8(ubyte %A) { ; AND associates
bool %test9(int %A) {
%B = and int %A, -2147483648 ; Test of sign bit, convert to setle %A, 0
%C = cast int %B to bool
%C = setne int %B, 0
ret bool %C
}
bool %test9(uint %A) {
%B = and uint %A, 2147483648 ; Test of sign bit, convert to setle %A, 0
%C = cast uint %B to bool
%C = setne uint %B, 0
ret bool %C
}