diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2004-02-02 15:45:22 -0800 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2004-02-02 15:45:22 -0800 |
commit | 956aff1291990639f8a59a95c6b22e0c17bb8cd8 (patch) | |
tree | ab01786ee2cada4cd0c7156de68a2ac85675ac0e /cpu/exetrace.hh | |
parent | 7b07b0877f05cffa93b782a76a15791c1126216a (diff) | |
download | gem5-956aff1291990639f8a59a95c6b22e0c17bb8cd8.tar.xz |
More conversions of ref-counted parameters to references:
Statistics::NodePtr, StaticInstPtr, ethernet PacketPtr.
base/statistics.hh:
Change NodePtr parameters to Nodeptr &.
cpu/exetrace.hh:
Change StaticInstPtr parameters to StaticInstPtr &.
dev/etherbus.cc:
dev/etherbus.hh:
dev/etherdump.cc:
dev/etherdump.hh:
dev/etherint.hh:
dev/etherlink.cc:
dev/etherlink.hh:
dev/ethertap.cc:
dev/ethertap.hh:
change PacketPtr parameters to PacketPtr &.
--HG--
extra : convert_revision : a778efdca33b0ec5beb76cf47db0e9e4728897ee
Diffstat (limited to 'cpu/exetrace.hh')
-rw-r--r-- | cpu/exetrace.hh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpu/exetrace.hh b/cpu/exetrace.hh index d05dbe0cd..622ecd729 100644 --- a/cpu/exetrace.hh +++ b/cpu/exetrace.hh @@ -91,8 +91,9 @@ class InstRecord : public Record bool regs_valid; public: - InstRecord(Tick _cycle, BaseCPU *_cpu, StaticInstPtr<TheISA> _staticInst, - Addr _pc, bool spec, unsigned _thread) + InstRecord(Tick _cycle, BaseCPU *_cpu, + const StaticInstPtr<TheISA> &_staticInst, + Addr _pc, bool spec, int _thread) : Record(_cycle), cpu(_cpu), staticInst(_staticInst), PC(_pc), misspeculating(spec), thread(_thread) { |