mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-08 04:11:27 +00:00
Exit only with a value from 0-255.
llvm-svn: 18119
This commit is contained in:
parent
e35ae48fcd
commit
8a01a5f7ad
@ -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