diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-11-08 02:00:55 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-11-08 02:00:55 -0800 |
commit | 3a3e8461511663a3154d0507ba1b0f52ea5366c5 (patch) | |
tree | 8f0504eb88f2f0b35befae48d36c06a9cbc8d25c /src/arch | |
parent | 78bd8fe44fe3398f361335d2feb59a8221cc52e8 (diff) | |
download | gem5-3a3e8461511663a3154d0507ba1b0f52ea5366c5.tar.xz |
ARM: Get rid of NumInternalProcRegs.
That constant is a carry over from Alpha and doesn't do anything in ARM.
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/arm/registers.hh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/arch/arm/registers.hh b/src/arch/arm/registers.hh index 04fd00f3a..41bbf4e7f 100644 --- a/src/arch/arm/registers.hh +++ b/src/arch/arm/registers.hh @@ -55,7 +55,6 @@ typedef uint64_t MiscReg; const int NumIntArchRegs = NUM_ARCH_INTREGS; const int NumFloatArchRegs = 16; const int NumFloatSpecialRegs = 5; -const int NumInternalProcRegs = 0; const int NumIntRegs = NUM_INTREGS; const int NumFloatRegs = NumFloatArchRegs + NumFloatSpecialRegs; |