summaryrefslogtreecommitdiff
path: root/src/arch/power/isa.hh
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2013-02-19 05:56:07 -0500
committerAndreas Hansson <andreas.hansson@arm.com>2013-02-19 05:56:07 -0500
commitb44e0ce52b894fd4eecc9339e213b7a111c2cc1d (patch)
tree956a11a12aba16af554d212550d84649a55e9ed9 /src/arch/power/isa.hh
parent0acd2a96e5cd2a9bece4d5468dd1a8cc96c8aafe (diff)
downloadgem5-b44e0ce52b894fd4eecc9339e213b7a111c2cc1d.tar.xz
scons: Add warning for overloaded virtual functions
Fix the ISA startup warnings
Diffstat (limited to 'src/arch/power/isa.hh')
-rw-r--r--src/arch/power/isa.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/power/isa.hh b/src/arch/power/isa.hh
index f4e053d85..33439c48c 100644
--- a/src/arch/power/isa.hh
+++ b/src/arch/power/isa.hh
@@ -100,6 +100,9 @@ class ISA : public SimObject
void startup(ThreadContext *tc) {}
+ /// Explicitly import the otherwise hidden startup
+ using SimObject::startup;
+
const Params *params() const;
ISA(Params *p);