From: Gabe Black Date: Wed, 2 Jun 2010 17:58:04 +0000 (-0500) Subject: ARM: Fix the constant describing the number of floating point registers. X-Git-Tag: stable_2012_02_02~1316 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=647edea970b0313d0c2355ca886fb58c49ee2eaa;p=gem5.git ARM: Fix the constant describing the number of floating point registers. --- diff --git a/src/arch/arm/registers.hh b/src/arch/arm/registers.hh index 41bbf4e7f..ada8b5079 100644 --- a/src/arch/arm/registers.hh +++ b/src/arch/arm/registers.hh @@ -53,7 +53,8 @@ typedef uint64_t MiscReg; // Constants Related to the number of registers const int NumIntArchRegs = NUM_ARCH_INTREGS; -const int NumFloatArchRegs = 16; +// The number of single precision floating point registers +const int NumFloatArchRegs = 64; const int NumFloatSpecialRegs = 5; const int NumIntRegs = NUM_INTREGS;