summaryrefslogtreecommitdiff
path: root/src/arch/sparc/intregfile.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-01-26 16:38:29 -0500
committerGabe Black <gblack@eecs.umich.edu>2007-01-26 16:38:29 -0500
commit47b2aa634627a93b125af1f07c6e5c249360b0d1 (patch)
treed687bec34682951e7b85fc228b36595ff8308138 /src/arch/sparc/intregfile.hh
parent5407a6bc3223aacbb3f243327b62550e5773c292 (diff)
downloadgem5-47b2aa634627a93b125af1f07c6e5c249360b0d1.tar.xz
Fixed the number of integer registers. There are MaxGL+1 sets of globals, not just MaxGL.
--HG-- extra : convert_revision : 6fd090f112611db1e72a1f129dff03687d52930a
Diffstat (limited to 'src/arch/sparc/intregfile.hh')
-rw-r--r--src/arch/sparc/intregfile.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/sparc/intregfile.hh b/src/arch/sparc/intregfile.hh
index 716d45a65..665c7aa31 100644
--- a/src/arch/sparc/intregfile.hh
+++ b/src/arch/sparc/intregfile.hh
@@ -48,7 +48,7 @@ namespace SparcISA
std::string getIntRegName(RegIndex);
const int NumIntArchRegs = 32;
- const int NumIntRegs = MaxGL * 8 + NWindows * 16 + NumMicroIntRegs;
+ const int NumIntRegs = (MaxGL + 1) * 8 + NWindows * 16 + NumMicroIntRegs;
class IntRegFile
{