summaryrefslogtreecommitdiff
path: root/src/arch/x86/op_dec.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/op_dec.c')
-rw-r--r--src/arch/x86/op_dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/op_dec.c b/src/arch/x86/op_dec.c
index 928dafd..7a524b9 100644
--- a/src/arch/x86/op_dec.c
+++ b/src/arch/x86/op_dec.c
@@ -51,7 +51,7 @@ GArchInstruction *x86_read_instr_dec_r1632(const bin_t *data, off_t *pos, off_t
{
GArchInstruction *result; /* Instruction à retourner */
X86Opcodes opcode; /* Instruction effective */
- AsmOperandSize oprsize; /* Taille des opérandes */
+ MemoryDataSize oprsize; /* Taille des opérandes */
opcode = XOP_DEC_E_AX + (data[*pos] - 0x48);
@@ -122,7 +122,7 @@ GArchInstruction *x86_read_instr_dec_rm8(const bin_t *data, off_t *pos, off_t le
GArchInstruction *x86_read_instr_dec_rm1632(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, X86Prefix prefix, const GX86Processor *proc)
{
GArchInstruction *result; /* Instruction à retourner */
- AsmOperandSize oprsize; /* Taille des opérandes */
+ MemoryDataSize oprsize; /* Taille des opérandes */
result = g_x86_instruction_new(XOP_DEC_RM1632);