summaryrefslogtreecommitdiff
path: root/src/arch/x86/op_inc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/op_inc.c')
-rw-r--r--src/arch/x86/op_inc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/op_inc.c b/src/arch/x86/op_inc.c
index eee3490..e9bea6d 100644
--- a/src/arch/x86/op_inc.c
+++ b/src/arch/x86/op_inc.c
@@ -51,7 +51,7 @@ GArchInstruction *x86_read_instr_inc_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_INC_E_AX + (data[*pos] - 0x40);
@@ -122,7 +122,7 @@ GArchInstruction *x86_read_instr_inc_rm8(const bin_t *data, off_t *pos, off_t le
GArchInstruction *x86_read_instr_inc_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_INC_RM1632);