arm: reduce the size of ARM_ITStatus.ITStates[] to 8

This commit is contained in:
Nguyen Anh Quynh 2015-06-03 22:25:22 +08:00
parent 5311ef224a
commit ab6cc88cf4
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ typedef void (*GetRegisterAccess_t)(const cs_insn *insn,
// for ARM only
typedef struct ARM_ITStatus {
unsigned char ITStates[128]; // FIXME
unsigned char ITStates[8];
unsigned int size;
} ARM_ITStatus;