Added a flattenIntIndex function for Alpha.

--HG--
extra : convert_revision : 5ed79ed18e443118a28d6890327c55a6a3fcd325
This commit is contained in:
Gabe Black 2006-12-06 11:30:41 -05:00
parent 2dcf00bc8b
commit b3cfa6ec42

View file

@ -189,6 +189,11 @@ namespace AlphaISA
} }
}; };
static inline int flattenIntIndex(ThreadContext * tc, int reg)
{
return reg;
}
void copyRegs(ThreadContext *src, ThreadContext *dest); void copyRegs(ThreadContext *src, ThreadContext *dest);
void copyMiscRegs(ThreadContext *src, ThreadContext *dest); void copyMiscRegs(ThreadContext *src, ThreadContext *dest);