diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2009-10-07 00:22:10 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2009-10-07 00:22:10 (GMT) |
commit | daa0084325d4e748f334a223e1cd3800120e6055 (patch) | |
tree | 9f8bfe9296e1a4f6aa945418293f895303b771e2 /src/arch/jvm | |
parent | d9be16271ab3fbb95d6c95baa92242358f0e7dfd (diff) |
Created a function to load n x86 operands and supported extra x86 opcodes.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@128 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/jvm')
-rw-r--r-- | src/arch/jvm/operand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/jvm/operand.c b/src/arch/jvm/operand.c index 429516a..a485a2b 100644 --- a/src/arch/jvm/operand.c +++ b/src/arch/jvm/operand.c @@ -324,7 +324,7 @@ bool jvm_read_one_operand(GArchInstruction *instr, const bin_t *data, off_t *pos if (op == NULL) return false; - g_arch_instruction_attach_one_operand(instr, op); + g_arch_instruction_attach_extra_operand(instr, op); return true; |