diff options
Diffstat (limited to 'src/arch/power/remote_gdb.hh')
-rw-r--r-- | src/arch/power/remote_gdb.hh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/arch/power/remote_gdb.hh b/src/arch/power/remote_gdb.hh index e1c396266..9fefb345b 100644 --- a/src/arch/power/remote_gdb.hh +++ b/src/arch/power/remote_gdb.hh @@ -69,9 +69,14 @@ class RemoteGDB : public BaseRemoteGDB size_t size() const { return sizeof(r); } void getRegs(ThreadContext*); void setRegs(ThreadContext*) const; - const std::string name() const { return gdb->name() + ".PowerGdbRegCache"; } + const std::string + name() const + { + return gdb->name() + ".PowerGdbRegCache"; + } }; + PowerGdbRegCache regCache; public: RemoteGDB(System *_system, ThreadContext *tc); |