jit_value_set_addressable

Function jit_value_set_addressable 

Source
pub unsafe extern "C" fn jit_value_set_addressable(value: jit_value_t)
Expand description

Set a flag on a value to indicate that it is addressable. This should be used when you want to take the address of a value (e.g. &variable in C). The value is guaranteed to not be stored in a register across a function call. If you refer to a value from a nested function (jit_value_ref), then the value will be automatically marked as addressable.