summaryrefslogtreecommitdiff
path: root/src/arch/alpha/isa_traits.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-12-28 14:23:30 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-12-28 14:23:30 -0500
commit9ca6efdb60866b1feada0295b02fdc7ff49eacf2 (patch)
tree39eb6195e12411d678befc5756e7da585c2ed4dc /src/arch/alpha/isa_traits.hh
parent876c59fe8dafa2b16918ffbf7e38130f7255c47f (diff)
downloadgem5-9ca6efdb60866b1feada0295b02fdc7ff49eacf2.tar.xz
Fixed NumMiscArchRegs. This is still a magic number, and it should be set automatically by the miscreg enum. I need to figure out how to do that without including the whole miscregfile.hh and making header spaghetti.
--HG-- extra : convert_revision : eb640c9ef10a188b96f6a079f91abc8f67b9d38c
Diffstat (limited to 'src/arch/alpha/isa_traits.hh')
-rw-r--r--src/arch/alpha/isa_traits.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/alpha/isa_traits.hh b/src/arch/alpha/isa_traits.hh
index 35d9ce843..a267ac034 100644
--- a/src/arch/alpha/isa_traits.hh
+++ b/src/arch/alpha/isa_traits.hh
@@ -132,7 +132,7 @@ namespace AlphaISA
const int NumPALShadowRegs = 8;
const int NumFloatArchRegs = 32;
// @todo: Figure out what this number really should be.
- const int NumMiscArchRegs = 32;
+ const int NumMiscArchRegs = 77;
const int NumIntRegs = NumIntArchRegs + NumPALShadowRegs;
const int NumFloatRegs = NumFloatArchRegs;