diff -r 51de398e0ea5 -r 5e585b655efe src/arch/arm/miscregs.hh --- a/src/arch/arm/miscregs.hh Fri Sep 07 14:26:11 2012 -0500 +++ b/src/arch/arm/miscregs.hh Fri Sep 07 14:26:22 2012 -0500 @@ -43,6 +43,7 @@ #define __ARCH_ARM_MISCREGS_HH__ #include "base/bitunion.hh" +#include "base/compiler.hh" namespace ArmISA { @@ -250,7 +251,7 @@ unsigned crm, unsigned opc2); - const char * const miscRegName[NUM_MISCREGS] = { + const char * const miscRegName[] = { "cpsr", "cpsr_q", "spsr", "spsr_fiq", "spsr_irq", "spsr_svc", "spsr_mon", "spsr_und", "spsr_abt", "fpsr", "fpsid", "fpscr", "fpscr_qc", "fpscr_exc", "fpexc", @@ -325,6 +326,9 @@ "nop", "raz" }; + static_assert(sizeof(miscRegName) / sizeof(*miscRegName) == NUM_MISCREGS, + "The miscRegName array and NUM_MISCREGS are inconsistent."); + BitUnion32(CPSR) Bitfield<31,30> nz; Bitfield<29> c;