diff options
Diffstat (limited to 'src/arch/mips/process.hh')
-rw-r--r-- | src/arch/mips/process.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/mips/process.hh b/src/arch/mips/process.hh index e9e058519..a607bd285 100644 --- a/src/arch/mips/process.hh +++ b/src/arch/mips/process.hh @@ -51,10 +51,10 @@ class MipsProcess : public Process void argsInit(int pageSize); public: - MipsISA::IntReg getSyscallArg(ThreadContext *tc, int &i); + RegVal getSyscallArg(ThreadContext *tc, int &i); /// Explicitly import the otherwise hidden getSyscallArg using Process::getSyscallArg; - void setSyscallArg(ThreadContext *tc, int i, MipsISA::IntReg val); + void setSyscallArg(ThreadContext *tc, int i, RegVal val); void setSyscallReturn(ThreadContext *tc, SyscallReturn return_value); }; |