sparc: Get rid of some commented out constants.
authorGabe Black <gabeblack@google.com>
Sat, 7 Dec 2019 09:30:23 +0000 (01:30 -0800)
committerGabe Black <gabeblack@google.com>
Thu, 12 Mar 2020 01:35:34 +0000 (01:35 +0000)
Change-Id: Ie2a223f5f969402a03b924ef767eddbcc14bf312
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/23444
Reviewed-by: Bobby R. Bruce <bbruce@ucdavis.edu>
Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu>
Tested-by: kokoro <noreply+kokoro@google.com>
src/arch/sparc/sparc_traits.hh

index d967f66418aa78c2b985e70c46eb70c1d7fb047d..e92b9822e91d54a5180c828a6e8c175ae4a84a32 100644 (file)
@@ -39,15 +39,10 @@ const int MaxPGL = 2;
 
 // Number of register windows, can legally be 3 to 32
 const int NWindows = 8;
-// const int NumMicroIntRegs = 1;
 const int NumMicroIntRegs = 9;
 
-// const int NumRegularIntRegs = MaxGL * 8 + NWindows * 16;
-// const int NumMicroIntRegs = 1;
-// const int NumIntRegs = NumRegularIntRegs + NumMicroIntRegs;
 const int NumFloatRegs = 64;
 const int NumFloatArchRegs = NumFloatRegs;
-// const int NumMiscRegs = 40;
 }
 
 #endif // __ARCH_SPARC_SPARC_TRAITS_HH__