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 e404dc9cbe
commit 8bd0fdb992

View File

@ -26,7 +26,7 @@ typedef char *(*GetRegisterName_t)(unsigned RegNo);
// for ARM only
typedef struct ARM_ITStatus {
unsigned char ITStates[128]; // FIXME
unsigned char ITStates[8];
unsigned int size;
} ARM_ITStatus;