new testcase

llvm-svn: 21689
This commit is contained in:
Chris Lattner 2005-05-04 19:05:02 +00:00
parent c564fd819c
commit 207e92ec5f

View File

@ -106,3 +106,10 @@ bool %test19(bool %A, bool %B) {
%C = seteq int %a, %b %C = seteq int %a, %b
ret bool %C ret bool %C
} }
uint %test20(uint %A) {
%B = and uint %A, 1
%C = setne uint %B, 0
%D = cast bool %C to uint
ret uint %D
}