mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
157c888810
llvm-svn: 6034
22 lines
574 B
LLVM
22 lines
574 B
LLVM
; Demonstrate all of the variable argument handling intrinsic functions plus
|
|
; the va_arg instruction.
|
|
|
|
implementation
|
|
declare void %llvm.va_start(sbyte**, ...)
|
|
declare void %llvm.va_copy(sbyte**, sbyte*)
|
|
declare void %llvm.va_end(sbyte**)
|
|
|
|
int %test(int %X, ...) {
|
|
%ap = alloca sbyte*
|
|
%aq = alloca sbyte*
|
|
call void (sbyte**, ...)* %llvm.va_start(sbyte** %ap, int %X)
|
|
%apv = load sbyte** %ap
|
|
call void %llvm.va_copy(sbyte** %aq, sbyte* %apv)
|
|
call void %llvm.va_end(sbyte** %aq)
|
|
|
|
%tmp = va_arg sbyte** %ap, int
|
|
|
|
call void %llvm.va_end(sbyte** %ap)
|
|
ret int %tmp
|
|
}
|