Added basic flatten function for mips.
--HG-- extra : convert_revision : 2c32851584001734d139f36c4d58c5e61067fcfc
This commit is contained in:
parent
12c5bd2305
commit
a3f351ab59
1 changed files with 5 additions and 0 deletions
|
@ -173,6 +173,11 @@ namespace MipsISA
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
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);
|
||||||
|
|
Loading…
Reference in a new issue