Function intrinsic_is_overloaded

Source
pub fn intrinsic_is_overloaded(id: u32) -> bool
Expand description

Determines if the intrinsic identified by the given ID is overloaded.

This function wraps the LLVMIntrinsicIsOverloaded function from the LLVM core library. Overloaded intrinsics can have multiple versions differentiated by their parameter types.

§Parameters

  • id: The intrinsic ID (u32) corresponding to the desired intrinsic function.

§Returns

Returns true if the intrinsic is overloaded, or false otherwise.