From: Gabe Black Date: Sat, 14 Apr 2007 17:08:24 +0000 (+0000) Subject: Make register indexes larger so they can actually hold all the legal values. Oops! X-Git-Tag: m5_2.0_beta4~311^2~2^2~1^2^2~9^2~3 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5a3dcc172a9fd661330909815b163eb6f4d6a2d8;p=gem5.git Make register indexes larger so they can actually hold all the legal values. Oops! --HG-- extra : convert_revision : 7689b2e1f7468e4acb8be0f242f74002c79e7960 --- diff --git a/src/arch/sparc/types.hh b/src/arch/sparc/types.hh index 15386adca..8bd50b7e8 100644 --- a/src/arch/sparc/types.hh +++ b/src/arch/sparc/types.hh @@ -59,7 +59,7 @@ namespace SparcISA typedef int RegContextVal; - typedef uint8_t RegIndex; + typedef uint16_t RegIndex; } #endif