Add another case, which occurs in em3d

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9668 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-11-03 03:51:26 +00:00
parent 8ee9204309
commit a5c5666d48

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
}