summaryrefslogtreecommitdiff
path: root/src/arch/arm/registers.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2010-06-02 12:58:04 -0500
committerGabe Black <gblack@eecs.umich.edu>2010-06-02 12:58:04 -0500
commit647edea970b0313d0c2355ca886fb58c49ee2eaa (patch)
tree83c2a6c0ada811687d23afd364d98044b932530c /src/arch/arm/registers.hh
parent2f3102f1ef02977a4489fa0442ba7d6aed8e2855 (diff)
downloadgem5-647edea970b0313d0c2355ca886fb58c49ee2eaa.tar.xz
ARM: Fix the constant describing the number of floating point registers.
Diffstat (limited to 'src/arch/arm/registers.hh')
-rw-r--r--src/arch/arm/registers.hh3
1 files changed, 2 insertions, 1 deletions
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;