diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2017-01-03 12:03:06 +0000 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2017-01-03 12:03:06 +0000 |
commit | abe7ef95cb89c68c6385162cb801bab8b27a585b (patch) | |
tree | 3f3b52aa2328f2511e6d4cbe72cd854c21997f9d /src/cpu/kvm | |
parent | f835378bea588c8fe614b18f41c5792ba7044263 (diff) | |
download | gem5-abe7ef95cb89c68c6385162cb801bab8b27a585b.tar.xz |
sim: Remove redundant export_method_cxx_predecls
The headers declared in export_method_cxx_predecls are redundant since a
SimObject's main header is automatically included.
Change-Id: Ied9e84630b36960e54efe91d16f8c66fba7e0da0
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-by: Curtis Dunham <curtis.dunham@arm.com>
Reviewed-by: Joe Gross <joseph.gross@amd.com>
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'src/cpu/kvm')
-rw-r--r-- | src/cpu/kvm/BaseKvmCPU.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/cpu/kvm/BaseKvmCPU.py b/src/cpu/kvm/BaseKvmCPU.py index 34ab752de..4c64f24ed 100644 --- a/src/cpu/kvm/BaseKvmCPU.py +++ b/src/cpu/kvm/BaseKvmCPU.py @@ -47,10 +47,6 @@ class BaseKvmCPU(BaseCPU): abstract = True @classmethod - def export_method_cxx_predecls(cls, code): - code('#include "cpu/kvm/base.hh"') - - @classmethod def export_methods(cls, code): code(''' void dump() const; |