mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-05 02:49:18 +00:00
10 lines
167 B
LLVM
10 lines
167 B
LLVM
![]() |
|
||
|
|
||
|
|
||
|
int %test(int %X, ...) {
|
||
|
%ap = alloca sbyte*
|
||
|
; This is not a legal testcase, it just shows the syntax for va_arg
|
||
|
%tmp = va_arg sbyte** %ap, int
|
||
|
ret int %tmp
|
||
|
}
|