Skip to content

Commit

Permalink
Change type of immediate operand to unsiged (due to: #771)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rot127 committed Jun 21, 2023
1 parent f705126 commit 1bb91f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/capstone/arm.h
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ typedef struct cs_arm_op {

union {
int reg; ///< register value for REG/SYSREG operand
int32_t imm; ///< immediate value for C-IMM, P-IMM or IMM operand
uint32_t imm; ///< immediate value for C-IMM, P-IMM or IMM operand
int pred; ///< Predicate operand value.
double fp; ///< floating point value for FP operand
arm_op_mem mem; ///< base/index/scale/disp value for MEM operand
Expand Down

0 comments on commit 1bb91f5

Please sign in to comment.