OP_RETURN.S revision a8b91c52fd8a90b784835dfe1f8898035266c4dd
1%verify "executed"
2    /*
3     * Return a 32-bit value.  Copies the return value into the "thread"
4     * structure, then jumps to the return handler.
5     *
6     * for: return, return-object
7     */
8    /* op vAA */
9    GET_OPA(a2)                            #  a2 <- AA
10    GET_VREG(a0, a2)                       #  a0 <- vAA
11    sw        a0, offThread_retval(rSELF)  #  retval.i <- vAA
12    b         common_returnFromMethod
13
14