LLVMGetNamedFunction

Function LLVMGetNamedFunction 

Source
pub unsafe extern "C" fn LLVMGetNamedFunction(
    M: LLVMModuleRef,
    Name: *const c_char,
) -> LLVMValueRef
Expand description

Obtain a Function value from a Module by its name.

The returned value corresponds to a llvm::Function value.

@see llvm::Module::getFunction()