From fca4fea769c09add919099e5ede694145c5c5f77 Mon Sep 17 00:00:00 2001 From: Andreas Sandberg Date: Mon, 7 Jan 2013 13:05:46 -0500 Subject: cpu: Fix O3 LSQ debug dumping constness and formatting --- src/cpu/o3/lsq_unit.hh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/cpu/o3/lsq_unit.hh') diff --git a/src/cpu/o3/lsq_unit.hh b/src/cpu/o3/lsq_unit.hh index c0fc52caf..2c79931e2 100644 --- a/src/cpu/o3/lsq_unit.hh +++ b/src/cpu/o3/lsq_unit.hh @@ -241,17 +241,17 @@ class LSQUnit { bool sendStore(PacketPtr data_pkt); /** Increments the given store index (circular queue). */ - inline void incrStIdx(int &store_idx); + inline void incrStIdx(int &store_idx) const; /** Decrements the given store index (circular queue). */ - inline void decrStIdx(int &store_idx); + inline void decrStIdx(int &store_idx) const; /** Increments the given load index (circular queue). */ - inline void incrLdIdx(int &load_idx); + inline void incrLdIdx(int &load_idx) const; /** Decrements the given load index (circular queue). */ - inline void decrLdIdx(int &load_idx); + inline void decrLdIdx(int &load_idx) const; public: /** Debugging function to dump instructions in the LSQ. */ - void dumpInsts(); + void dumpInsts() const; private: /** Pointer to the CPU. */ -- cgit v1.2.3