pub unsafe extern "C" fn LLVMGetBasicBlocks(
Fn: LLVMValueRef,
BasicBlocks: *mut LLVMBasicBlockRef,
)Expand description
Obtain all of the basic blocks in a function.
This operates on a function value. The BasicBlocks parameter is a pointer to a pre-allocated array of LLVMBasicBlockRef of at least LLVMCountBasicBlocks() in length. This array is populated with LLVMBasicBlockRef instances.