Exit only with a value from 0-255.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18119 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-11-22 19:50:41 +00:00
parent 0c41db8665
commit 0baf656edb

View File

@ -5,8 +5,9 @@
declare void %exit(int)
int %test(sbyte %C, short %S) {
%X = cast short %S to int
ret int %X
%X = cast short %S to ubyte
%Y = cast ubyte %X to int
ret int %Y
}
void %FP(void(int) * %F) {