new testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21710 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-05-06 01:51:05 +00:00
parent 828eeddb38
commit 564d20cb9b

View File

@ -113,3 +113,11 @@ uint %test20(uint %A) {
%D = cast bool %C to uint
ret uint %D
}
int %test21(int %a) {
%tmp.6 = and int %a, 4
%not.tmp.7 = setne int %tmp.6, 0
%retval = cast bool %not.tmp.7 to int
ret int %retval
}