summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/arch/mips/linux/process.cc2
-rw-r--r--src/arch/mips/process.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/mips/linux/process.cc b/src/arch/mips/linux/process.cc
index 1d2709aa1..adfbfd3f6 100644
--- a/src/arch/mips/linux/process.cc
+++ b/src/arch/mips/linux/process.cc
@@ -146,7 +146,7 @@ sys_setsysinfoFunc(SyscallDesc *desc, int callnum, ThreadContext *tc)
// I don't think this exactly matches the HW FPCR
fpcr.copyIn(tc->getVirtProxy());
DPRINTFR(SyscallVerbose, "sys_setsysinfo(SSI_IEEE_FP_CONTROL): "
- " setting FPCR to 0x%x\n", gtoh(*(uint64_t*)fpcr));
+ " setting FPCR to 0x%x\n", letoh(*(uint64_t*)fpcr));
return 0;
}
default:
diff --git a/src/arch/mips/process.cc b/src/arch/mips/process.cc
index f5aae732c..ca4f79afd 100644
--- a/src/arch/mips/process.cc
+++ b/src/arch/mips/process.cc
@@ -161,7 +161,7 @@ MipsProcess::argsInit(int pageSize)
// write contents to stack
IntType argc = argv.size();
- argc = htog((IntType)argc);
+ argc = htole((IntType)argc);
initVirtMem.writeBlob(memState->getStackMin(), &argc, intSize);