From: Gabe Black Date: Wed, 6 Dec 2006 16:30:41 +0000 (-0500) Subject: Added a flattenIntIndex function for Alpha. X-Git-Tag: m5_2.0_beta3~274^2~24 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b3cfa6ec42a232bc31adb6cf540717859ad0fab3;p=gem5.git Added a flattenIntIndex function for Alpha. --HG-- extra : convert_revision : 5ed79ed18e443118a28d6890327c55a6a3fcd325 --- diff --git a/src/arch/alpha/regfile.hh b/src/arch/alpha/regfile.hh index ff5830822..c73c32bad 100644 --- a/src/arch/alpha/regfile.hh +++ b/src/arch/alpha/regfile.hh @@ -189,6 +189,11 @@ namespace AlphaISA } }; + static inline int flattenIntIndex(ThreadContext * tc, int reg) + { + return reg; + } + void copyRegs(ThreadContext *src, ThreadContext *dest); void copyMiscRegs(ThreadContext *src, ThreadContext *dest);