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