mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-26 05:00:39 +00:00
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:
parent
0c41db8665
commit
0baf656edb
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user