summaryrefslogtreecommitdiffstats
path: root/vm/mterp/mips/OP_NOP.S
blob: 38a5eb41874bc39ee696088e2f86f224bb1c24a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%verify "executed"
    FETCH_ADVANCE_INST(1)                  #  advance to next instr, load rINST
    GET_INST_OPCODE(t0)
    GOTO_OPCODE(t0)                        #  execute it

#ifdef ASSIST_DEBUGGER
    /* insert fake function header to help gdb find the stack frame */
    .type dalvik_inst, @function
dalvik_inst:
    .ent dalvik_inst
    .end dalvik_inst
#endif