stl.fret¶
Return into the address written in the “ret_reg” variable.
@Assumes: ret_reg contains a valid return address from a prior stl.fcall.
@Assumes: ret_reg contains a valid return address from a prior stl.fcall
Signature¶
def fret ret_reg { ... }
Defined in ptrlib.fj — lines 103–105 (view on GitHub).
Complexity¶
Time:
1Space:
1
See the complexity glossary for what @, w, dw, dbit, n mean.
Source¶
Click to view the macro body
def fret ret_reg {
;ret_reg
}
Used by¶
Example uses¶
bit.print_dec_uintinbit/output.fj
← Previous: stl.fcall