diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2012-06-08 12:45:24 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2012-06-08 12:45:24 -0400 |
commit | 754a9570f28ded7fc682cc56d33fb49912f63f3e (patch) | |
tree | b16ef0076c1a4551f0c1d399f577b7d00560606e | |
parent | a118c01716aad899d6d45b57cd71c380ee402ae3 (diff) | |
download | gem5-754a9570f28ded7fc682cc56d33fb49912f63f3e.tar.xz |
Timing CPU: Remove a redundant port pointer
This patch is trivial and merely prunes a pointer that was never set
or used.
-rw-r--r-- | src/cpu/simple/timing.hh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cpu/simple/timing.hh b/src/cpu/simple/timing.hh index 16bb554e2..77057ad02 100644 --- a/src/cpu/simple/timing.hh +++ b/src/cpu/simple/timing.hh @@ -164,7 +164,6 @@ class TimingSimpleCPU : public BaseSimpleCPU { PacketPtr pkt; TimingSimpleCPU *cpu; - CpuPort *port; TickEvent(TimingSimpleCPU *_cpu) : pkt(NULL), cpu(_cpu) {} const char *description() const { return "Timing CPU tick"; } |