From e3d88318574e7b77175e7d31e1f932f3866261a1 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 10 Nov 2006 15:30:59 -0500 Subject: [PATCH] Fixed up DepTags a little. I think NumMicroIntRegs shouldn't be added to Ctrl_Base_DepTag. --HG-- extra : convert_revision : 2ebb3eb781441ba936c8d8bb1f42e4c0840aff2e --- src/arch/sparc/isa_traits.hh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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, };