summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/arch/alpha/remote_gdb.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/alpha/remote_gdb.hh b/src/arch/alpha/remote_gdb.hh
index 38ff91933..c8ed709f6 100644
--- a/src/arch/alpha/remote_gdb.hh
+++ b/src/arch/alpha/remote_gdb.hh
@@ -50,8 +50,8 @@ class RemoteGDB : public BaseRemoteGDB
{
protected:
// Machine memory
- bool acc(Addr addr, size_t len);
- bool write(Addr addr, size_t size, const char *data);
+ bool acc(Addr addr, size_t len) override;
+ bool write(Addr addr, size_t size, const char *data) override;
void insertHardBreak(Addr addr, size_t len) override;
@@ -75,7 +75,7 @@ class RemoteGDB : public BaseRemoteGDB
public:
RemoteGDB(System *system, ThreadContext *context);
- BaseGdbRegCache *gdbRegs();
+ BaseGdbRegCache *gdbRegs() override;
};
} // namespace AlphaISA