ppc: correct a comment on IMM operand in ppc.h

This commit is contained in:
Nguyen Anh Quynh 2014-03-09 00:28:36 +08:00
parent fd76fa2a98
commit 183d05350d

View File

@ -70,7 +70,7 @@ typedef struct cs_ppc_op {
ppc_op_type type; // operand type
union {
unsigned int reg; // register value for REG operand
int32_t imm; // immediate value for C-IMM or IMM operand
int32_t imm; // immediate value for IMM operand
ppc_op_mem mem; // base/disp value for MEM operand
};
} cs_ppc_op;