Yet another testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6871 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-06-23 21:49:25 +00:00
parent 8186a94e08
commit d9fa6a331e

View File

@ -81,3 +81,9 @@ bool %test12(ubyte %A) {
ret bool %C
}
bool %test13(ubyte %A, ubyte %b) {
%B = add ubyte %A, %b
%C = cast ubyte %B to bool ; === A != 1
ret bool %C
}