Add another case, which occurs in em3d

llvm-svn: 9668
This commit is contained in:
Chris Lattner 2003-11-03 03:51:26 +00:00
parent af7893203b
commit c75cfac56d
1 changed files with 6 additions and 1 deletions

View File

@ -41,4 +41,9 @@ short %test5(short %A) {
%D = cast uint %C to short
ret short %D
}
bool %test6(bool %A) {
%B = cast bool %A to int
%C = setne int %B, 0
ret bool %C
}