1%verify "executed"
2    /*
3     * Return a 64-bit value.  Copies the return value into the "glue"
4     * structure, then jumps to the return handler.
5     */
6    /* return-wide vAA */
7    mov     r2, rINST, lsr #8           @ r2<- AA
8    add     r2, rFP, r2, lsl #2         @ r2<- &fp[AA]
9    add     r3, rGLUE, #offGlue_retval  @ r3<- &glue->retval
10    ldmia   r2, {r0-r1}                 @ r0/r1 <- vAA/vAA+1
11    stmia   r3, {r0-r1}                 @ retval<- r0/r1
12    b       common_returnFromMethod
13
14