diff options
Diffstat (limited to 'src/arch/sparc/process.cc')
-rw-r--r-- | src/arch/sparc/process.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/sparc/process.cc b/src/arch/sparc/process.cc index 3bd3ea0bf..d89c606a3 100644 --- a/src/arch/sparc/process.cc +++ b/src/arch/sparc/process.cc @@ -451,7 +451,7 @@ void Sparc32Process::flushWindows(ThreadContext *tc) for (int index = 16; index < 32; index++) { uint32_t regVal = tc->readIntReg(index); regVal = htog(regVal); - if (!tc->getMemProxy().tryWriteBlob( + if (!tc->getVirtProxy().tryWriteBlob( sp + (index - 16) * 4, (uint8_t *)®Val, 4)) { warn("Failed to save register to the stack when " "flushing windows.\n"); @@ -486,7 +486,7 @@ Sparc64Process::flushWindows(ThreadContext *tc) for (int index = 16; index < 32; index++) { RegVal regVal = tc->readIntReg(index); regVal = htog(regVal); - if (!tc->getMemProxy().tryWriteBlob( + if (!tc->getVirtProxy().tryWriteBlob( sp + 2047 + (index - 16) * 8, (uint8_t *)®Val, 8)) { warn("Failed to save register to the stack when " "flushing windows.\n"); |