summaryrefslogtreecommitdiff
path: root/src/cpu/minor
diff options
context:
space:
mode:
authorAndreas Sandberg <andreas.sandberg@arm.com>2016-08-15 12:00:37 +0100
committerAndreas Sandberg <andreas.sandberg@arm.com>2016-08-15 12:00:37 +0100
commit2c05f5207d3c7d1a785bef79562edc02cd3f4bc1 (patch)
treecf05228c1cebd193c6e2d80ce7e65af786a3f6dc /src/cpu/minor
parentff8257c7c2394f6ac0d3183993e4af510847a448 (diff)
downloadgem5-2c05f5207d3c7d1a785bef79562edc02cd3f4bc1.tar.xz
cpu: Add missing override in Minor's exec context
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/cpu/minor')
-rw-r--r--src/cpu/minor/exec_context.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cpu/minor/exec_context.hh b/src/cpu/minor/exec_context.hh
index 9e7ce9b4f..6235721cf 100644
--- a/src/cpu/minor/exec_context.hh
+++ b/src/cpu/minor/exec_context.hh
@@ -104,7 +104,8 @@ class ExecContext : public ::ExecContext
}
Fault
- initiateMemRead(Addr addr, unsigned int size, Request::Flags flags)
+ initiateMemRead(Addr addr, unsigned int size,
+ Request::Flags flags) override
{
execute.getLSQ().pushRequest(inst, true /* load */, nullptr,
size, addr, flags, NULL);