summaryrefslogtreecommitdiff
path: root/src/arch/dalvik/instruction.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-12-12 00:16:28 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-12-12 00:16:28 (GMT)
commitd9fdfcf887a7a596a68db2500bb5e4d0b692abb6 (patch)
tree55d8a973b421ed832007a3757c0a61621a0bef44 /src/arch/dalvik/instruction.c
parent544dfe87adfe15c8588ccffea712672e1b7c4179 (diff)
Created an instruction for the 'If Then Else' blocks.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@201 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/dalvik/instruction.c')
-rw-r--r--src/arch/dalvik/instruction.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/arch/dalvik/instruction.c b/src/arch/dalvik/instruction.c
index d23bbe5..051bbe2 100644
--- a/src/arch/dalvik/instruction.c
+++ b/src/arch/dalvik/instruction.c
@@ -110,12 +110,12 @@ static dalvik_instruction _instructions[DOP_COUNT] = {
[DOP_CMPL_DOUBLE] = { 0x2f, "cmpl-double" },
[DOP_CMPG_DOUBLE] = { 0x30, "cmpg-double" },
[DOP_CMP_LONG] = { 0x31, "cmp-long" },
- [DOP_IF_EQ] = { 0x32, "if-eq" },
- [DOP_IF_NE] = { 0x33, "if-ne" },
- [DOP_IF_LT] = { 0x34, "if-lt" },
- [DOP_IF_GE] = { 0x35, "if-ge" },
- [DOP_IF_GT] = { 0x36, "if-gt" },
- [DOP_IF_LE] = { 0x37, "if-le" },
+ [DOP_IF_EQ] = { 0x32, "if-eq", dalvik_decomp_instr_if },
+ [DOP_IF_NE] = { 0x33, "if-ne", dalvik_decomp_instr_if },
+ [DOP_IF_LT] = { 0x34, "if-lt", dalvik_decomp_instr_if },
+ [DOP_IF_GE] = { 0x35, "if-ge", dalvik_decomp_instr_if },
+ [DOP_IF_GT] = { 0x36, "if-gt", dalvik_decomp_instr_if },
+ [DOP_IF_LE] = { 0x37, "if-le", dalvik_decomp_instr_if },
[DOP_IF_EQZ] = { 0x38, "if-eqz" },
[DOP_IF_NEZ] = { 0x39, "if-nez" },
[DOP_IF_LTZ] = { 0x3a, "if-ltz" },