diff options
author | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2013-01-07 13:05:46 -0500 |
---|---|---|
committer | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2013-01-07 13:05:46 -0500 |
commit | fca4fea769c09add919099e5ede694145c5c5f77 (patch) | |
tree | 3f8a4564eeaa6503fdb84575081400908b5076a5 /src/cpu/o3/lsq.hh | |
parent | fb52ea9220f307de18da6565a2cbbaf67ba2b7a7 (diff) | |
download | gem5-fca4fea769c09add919099e5ede694145c5c5f77.tar.xz |
cpu: Fix O3 LSQ debug dumping constness and formatting
Diffstat (limited to 'src/cpu/o3/lsq.hh')
-rw-r--r-- | src/cpu/o3/lsq.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/o3/lsq.hh b/src/cpu/o3/lsq.hh index 07881da9f..7caee86f6 100644 --- a/src/cpu/o3/lsq.hh +++ b/src/cpu/o3/lsq.hh @@ -263,9 +263,9 @@ class LSQ { { retryTid = tid; } /** Debugging function to print out all instructions. */ - void dumpInsts(); + void dumpInsts() const; /** Debugging function to print out instructions from a specific thread. */ - void dumpInsts(ThreadID tid) + void dumpInsts(ThreadID tid) const { thread[tid].dumpInsts(); } /** Executes a read operation, using the load specified at the load |