pub fn has_prologue_data(fn_val: &ValueRef) -> boolExpand description
Checks if a given function has prologue data.
This function wraps the LLVMHasPrologueData function from the LLVM core library. It determines whether
the specified function has prologue data attached.
§Parameters
fn_val: TheValueRefrepresenting the function.
§Returns
Returns true if the function has prologue data, or false otherwise.
§Safety
- The
ValueRefmust represent a valid function within a module.