summaryrefslogtreecommitdiff
path: root/src/arch/riscv/remote_gdb.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/riscv/remote_gdb.cc')
-rw-r--r--src/arch/riscv/remote_gdb.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/riscv/remote_gdb.cc b/src/arch/riscv/remote_gdb.cc
index 2b508762d..3488c8192 100644
--- a/src/arch/riscv/remote_gdb.cc
+++ b/src/arch/riscv/remote_gdb.cc
@@ -149,7 +149,7 @@ using namespace std;
using namespace RiscvISA;
RemoteGDB::RemoteGDB(System *_system, ThreadContext *tc)
- : BaseRemoteGDB(_system, tc)
+ : BaseRemoteGDB(_system, tc), regCache(this)
{
}
@@ -201,5 +201,5 @@ RemoteGDB::RiscvGdbRegCache::setRegs(ThreadContext *context) const
RemoteGDB::BaseGdbRegCache*
RemoteGDB::gdbRegs() {
- return new RiscvGdbRegCache(this);
+ return &regCache;
}