LLVMGetParams

Obtain the parameters in a function.

The takes a pointer to a pre-allocated array of LLVMValueRef that is at least LLVMCountParams() long. This array will be filled with LLVMValueRef instances which correspond to the parameters the function receives. Each LLVMValueRef corresponds to a llvm::Argument instance.

@see llvm::Function::arg_begin()

extern (C) nothrow
void
LLVMGetParams
(
LLVMValueRef Fn
,
LLVMValueRef* Params
)

Meta