pub fn set_prologue_data(fn_val: &ValueRef, prologue_data: &ValueRef)Expand description
Sets the prologue data for the function.
This function wraps the LLVMSetPrologueData function from the LLVM core library. It attaches prologue data
to the specified function.
§Parameters
fn_val: TheValueRefrepresenting the function.prologue_data: TheValueRefrepresenting the prologue data to attach.
§Safety
- The
ValueRefmust represent a valid function within a module. - The
prologue_datamust represent valid prologue data.