diff options
Diffstat (limited to 'src/arch/dalvik/instruction.c')
-rw-r--r-- | src/arch/dalvik/instruction.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/arch/dalvik/instruction.c b/src/arch/dalvik/instruction.c index e8059d6..ca48fe2 100644 --- a/src/arch/dalvik/instruction.c +++ b/src/arch/dalvik/instruction.c @@ -80,12 +80,12 @@ static dalvik_instruction _instructions[DOP_COUNT] = { [DOP_MOVE_RESULT_WIDE] = { 0x0b, "move-result-wide" }, [DOP_MOVE_RESULT_OBJECT] = { 0x0c, "move-result-object" }, [DOP_MOVE_EXCEPTION] = { 0x0d, "move-exception" }, - [DOP_RETURN_VOID] = { 0x0e, "return-void" }, - [DOP_RETURN] = { 0x0f, "return" }, - [DOP_RETURN_WIDE] = { 0x10, "return-wide" }, - [DOP_RETURN_OBJECT] = { 0x11, "return-object" }, + [DOP_RETURN_VOID] = { 0x0e, "return-void", dalvik_decomp_instr_return_void }, + [DOP_RETURN] = { 0x0f, "return", dalvik_decomp_instr_return }, + [DOP_RETURN_WIDE] = { 0x10, "return-wide", dalvik_decomp_instr_return }, + [DOP_RETURN_OBJECT] = { 0x11, "return-object", dalvik_decomp_instr_return }, [DOP_CONST_4] = { 0x12, "const/4", dalvik_decomp_instr_const }, - [DOP_CONST_16] = { 0x13, "const/16" }, + [DOP_CONST_16] = { 0x13, "const/16", dalvik_decomp_instr_const }, [DOP_CONST] = { 0x14, "const" }, [DOP_CONST_HIGH16] = { 0x15, "const/high16" }, [DOP_CONST_WIDE_16] = { 0x16, "const-wide/16" }, |