summaryrefslogtreecommitdiff
path: root/src/arch/x86/floatregfile.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-09-04 23:31:40 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-09-04 23:31:40 -0700
commitaf4c04c426cca3b73e58ab7464119db28252984c (patch)
tree500f4bd45710fd73028f5946750aa88cb166533d /src/arch/x86/floatregfile.hh
parent310912cf2ccae3a4e9e3505cc3316d778daa2ec8 (diff)
downloadgem5-af4c04c426cca3b73e58ab7464119db28252984c.tar.xz
X86: Add floating point micro registers.
--HG-- extra : convert_revision : 442a5f8b9216638e4e6898f89eacb8695719e20f
Diffstat (limited to 'src/arch/x86/floatregfile.hh')
-rw-r--r--src/arch/x86/floatregfile.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/floatregfile.hh b/src/arch/x86/floatregfile.hh
index 282cac796..14dda443f 100644
--- a/src/arch/x86/floatregfile.hh
+++ b/src/arch/x86/floatregfile.hh
@@ -101,7 +101,7 @@ namespace X86ISA
std::string getFloatRegName(RegIndex);
//Each 128 bit xmm register is broken into two effective 64 bit registers.
- const int NumFloatArchRegs = NumMMXRegs + 2 * NumXMMRegs;
+ const int NumFloatArchRegs = NumMMXRegs + 2 * NumXMMRegs + NumMicroFpRegs;
const int NumFloatRegs = NumFloatArchRegs;
class FloatRegFile