arm64: add place holder for insn_ops[]

test2
Nguyen Anh Quynh 10 years ago
parent ced9a6ed92
commit e8eb536346
  1. 17
      arch/AArch64/AArch64Mapping.c

@ -14972,4 +14972,21 @@ void arm64_op_addImm(MCInst *MI, int64_t imm)
}
}
#if 0
// Runtime option for the disassembled engine
typedef enum cs_op_type {
CS_OP_READ = 1, // this operand reads register
CS_OP_WRITE, // this operand writes register
} cs_op_type;
// map instruction to its characteristics
typedef struct insn_op {
unsigned int eflags_update; // how this instruction update status flags
cs_op_type operands[4];
} insn_op;
static insn_op insn_ops[] = {
};
#endif
#endif

Loading…
Cancel
Save