ARM: Fix the constant describing the number of floating point registers.
authorGabe Black <gblack@eecs.umich.edu>
Wed, 2 Jun 2010 17:58:04 +0000 (12:58 -0500)
committerGabe Black <gblack@eecs.umich.edu>
Wed, 2 Jun 2010 17:58:04 +0000 (12:58 -0500)
src/arch/arm/registers.hh

index 41bbf4e7f2c080f562995ae9be3cfbd728af654e..ada8b50790fdcf1e17bea9de63aee62aa63f65dc 100644 (file)
@@ -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;