Added basic flatten function for mips.

--HG--
extra : convert_revision : 2c32851584001734d139f36c4d58c5e61067fcfc
This commit is contained in:
Gabe Black 2006-12-06 05:40:11 -05:00
parent 12c5bd2305
commit a3f351ab59

View file

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