diff options
Diffstat (limited to 'src/cpu/trace/trace_cpu.hh')
-rw-r--r-- | src/cpu/trace/trace_cpu.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/trace/trace_cpu.hh b/src/cpu/trace/trace_cpu.hh index c873a349f..ebc14ca81 100644 --- a/src/cpu/trace/trace_cpu.hh +++ b/src/cpu/trace/trace_cpu.hh @@ -1146,10 +1146,10 @@ class TraceCPU : public BaseCPU public: /** Used to get a reference to the icache port. */ - MasterPort &getInstPort() { return icachePort; } + Port &getInstPort() { return icachePort; } /** Used to get a reference to the dcache port. */ - MasterPort &getDataPort() { return dcachePort; } + Port &getDataPort() { return dcachePort; } void regStats(); }; |