From: Gabe Black Date: Fri, 10 Nov 2006 20:30:59 +0000 (-0500) Subject: Fixed up DepTags a little. I think NumMicroIntRegs shouldn't be added to Ctrl_Base_De... X-Git-Tag: m5_2.0_beta2~65^2~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e3d88318574e7b77175e7d31e1f932f3866261a1;p=gem5.git Fixed up DepTags a little. I think NumMicroIntRegs shouldn't be added to Ctrl_Base_DepTag. --HG-- extra : convert_revision : 2ebb3eb781441ba936c8d8bb1f42e4c0840aff2e --- diff --git a/src/arch/sparc/isa_traits.hh b/src/arch/sparc/isa_traits.hh index 46a0ebbfb..1433ba3f8 100644 --- a/src/arch/sparc/isa_traits.hh +++ b/src/arch/sparc/isa_traits.hh @@ -76,10 +76,7 @@ namespace SparcISA // 0..31 are the integer regs 0..31 // 32..95 are the FP regs 0..31, i.e. use (reg + FP_Base_DepTag) FP_Base_DepTag = NumIntRegs, - Ctrl_Base_DepTag = NumIntRegs + NumFloatRegs, - //XXX These are here solely to get compilation and won't work - Fpcr_DepTag = 0, - Uniq_DepTag = 0 + Ctrl_Base_DepTag = NumIntRegs + NumMicroIntRegs + NumFloatRegs, };