From 8bd0fdb992c54895a17965bd602d90999a023dfc Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Wed, 3 Jun 2015 22:25:22 +0800 Subject: [PATCH] arm: reduce the size of ARM_ITStatus.ITStates[] to 8 --- cs_priv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cs_priv.h b/cs_priv.h index b56030c14f..b47df3190c 100644 --- a/cs_priv.h +++ b/cs_priv.h @@ -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;