diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-07-30 13:29:56 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-07-30 13:29:56 -0700 |
commit | 9e2b1f863058ca5ca921bf0ae65cbac8491dfed1 (patch) | |
tree | 79d5095dd22b44499c8c0e56084eba1790903d93 /src | |
parent | 18be07289f8cfc733097c2f759676fbcacd7db1e (diff) | |
download | gem5-9e2b1f863058ca5ca921bf0ae65cbac8491dfed1.tar.xz |
X86: Make sure FP_Base_DepTag is big enough to avoid trouble.
--HG--
extra : convert_revision : 7e0a83d5deb7fc9aaa69b7d024ea6ae6890df133
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/x86/isa_traits.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/isa_traits.hh b/src/arch/x86/isa_traits.hh index 63bcfead9..466422ced 100644 --- a/src/arch/x86/isa_traits.hh +++ b/src/arch/x86/isa_traits.hh @@ -82,7 +82,7 @@ namespace X86ISA // These enumerate all the registers for dependence tracking. enum DependenceTags { //There are 16 microcode registers at the moment - FP_Base_DepTag = 32, + FP_Base_DepTag = 1 << 7, Ctrl_Base_DepTag = FP_Base_DepTag + //mmx/x87 registers |