new testcases

llvm-svn: 26395
This commit is contained in:
Chris Lattner 2006-02-27 02:36:19 +00:00
parent f5c8a0b83f
commit a8bd74d5d0
1 changed files with 16 additions and 0 deletions

View File

@ -129,3 +129,19 @@ bool %test22(uint %A, int %X) {
%R = or bool %C, %Z
ret bool %R
}
int %test23(int %a) {
%tmp.1 = and int %a, 1
%tmp.2 = seteq int %tmp.1, 0
%tmp.3 = cast bool %tmp.2 to int ;; xor tmp1, 1
ret int %tmp.3
}
int %test24(uint %a) {
%tmp1 = and uint %a, 4
%tmp.1 = shr uint %tmp1, ubyte 2
%tmp.2 = seteq uint %tmp.1, 0
%tmp.3 = cast bool %tmp.2 to int ;; xor tmp1, 1
ret int %tmp.3
}