ΒΆvoid LLVMGetParamTypes(LLVMTypeRef FunctionTy,
LLVMTypeRef* Dest)
void LLVMGetParamTypes(LLVMTypeRef FunctionTy,
LLVMTypeRef* Dest)
Description
Obtain the types of a function's parameters. The Dest parameter should point to a pre-allocated array of LLVMTypeRef at least LLVMCountParamTypes() large. On return, the first LLVMCountParamTypes() entries in the array will be populated with LLVMTypeRef instances.
Declared at: llvm/include/llvm-c/Core.h:1249
Parameters
- LLVMTypeRef FunctionTy
- The function type to operate on.
- LLVMTypeRef* Dest
- Memory address of an array to be filled with result.