pub fn inline_function_call(
    context: &mut Context,
    function: Function,
    block: Block,
    call_site: Value,
    inlined_function: Function
) -> Result<(), IrError>
Expand description

Inline a function to a specific call site within another function.

The destination function, block and call site must be specified along with the function to inline.