ΒΆvoid LLVMGetHandlers(LLVMValueRef CatchSwitch,
LLVMBasicBlockRef* Handlers)
void LLVMGetHandlers(LLVMValueRef CatchSwitch,
LLVMBasicBlockRef* Handlers)
Description
Obtain the basic blocks acting as handlers for a catchswitch instruction. The Handlers parameter should point to a pre-allocated array of LLVMBasicBlockRefs at least LLVMGetNumHandlers() large. On return, the first LLVMGetNumHandlers() entries in the array will be populated with LLVMBasicBlockRef instances.
Declared at: llvm/include/llvm-c/Core.h:3660
Parameters
- LLVMValueRef CatchSwitch
- The catchswitch instruction to operate on.
- LLVMBasicBlockRef* Handlers
- Memory address of an array to be filled with basic blocks.