new testcase

llvm-svn: 12792
This commit is contained in:
Chris Lattner 2004-04-09 18:19:29 +00:00
parent 237f203ca9
commit 755cab25ae
1 changed files with 7 additions and 0 deletions

View File

@ -54,3 +54,10 @@ bool %test10(bool %C, bool %X) {
%R = select bool %C, bool %X, bool true ; R = or !C, X
ret bool %R
}
int %test11(int %a) {
%C = seteq int %a, 0
%R = select bool %C, int 0, int 1
ret int %R
}