@@ -425,22 +425,20 @@ typedef enum arm_op_type {
425425 ARM_OP_IMM = CS_OP_IMM , ///< Immediate operand
426426 ARM_OP_FP = CS_OP_FP , ///< Floating-Point operand
427427 ARM_OP_PRED = CS_OP_PRED , ///< Predicate
428- ARM_OP_CIMM =
429- CS_OP_SPECIAL + 0 , ///< C-Immediate (coprocessor registers)
430- ARM_OP_PIMM =
431- CS_OP_SPECIAL + 1 , ///< P-Immediate (coprocessor registers)
428+ // C-Immediate (coprocessor registers)
429+ ARM_OP_CIMM = CS_OP_SPECIAL + 0 ,
430+ // P-Immediate (coprocessor registers)
431+ ARM_OP_PIMM = CS_OP_SPECIAL + 1 ,
432432 ARM_OP_SETEND = CS_OP_SPECIAL + 2 , ///< operand for SETEND instruction
433433 ARM_OP_SYSREG = CS_OP_SPECIAL + 3 , ///< MSR/MRS special register operand
434434 ARM_OP_BANKEDREG = CS_OP_SPECIAL + 4 , ///< Banked register operand
435435 ARM_OP_SPSR = CS_OP_SPECIAL + 5 , ///< Collection of SPSR bits
436436 ARM_OP_CPSR = CS_OP_SPECIAL + 6 , ///< Collection of CPSR bits
437437 ARM_OP_SYSM = CS_OP_SPECIAL + 7 , ///< Raw SYSm field
438- ARM_OP_VPRED_R =
439- CS_OP_SPECIAL +
440- 8 , ///< Vector predicate. Leaves inactive lanes of output vector register unchanged.
441- ARM_OP_VPRED_N =
442- CS_OP_SPECIAL +
443- 9 , ///< Vector predicate. Don't preserved inactive lanes of output register.
438+ // Vector predicate. Leaves inactive lanes of output vector register unchanged.
439+ ARM_OP_VPRED_R = CS_OP_SPECIAL + 8 ,
440+ // Vector predicate. Don't preserved inactive lanes of output register.
441+ ARM_OP_VPRED_N = CS_OP_SPECIAL + 9 ,
444442 ARM_OP_MEM = CS_OP_MEM , ///< Memory operand
445443} arm_op_type ;
446444
0 commit comments