diff options
author | Nathan Binkert <binkertn@umich.edu> | 2007-02-10 15:14:50 -0800 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2007-02-10 15:14:50 -0800 |
commit | 184decd1963a7f016231f7614b5e739ad514ed37 (patch) | |
tree | 255576eeee2401b9148aa9610559cc9b5e024807 /src/cpu/o3 | |
parent | 63a82400596b9331d1babe88624f97209286d0b9 (diff) | |
download | gem5-184decd1963a7f016231f7614b5e739ad514ed37.tar.xz |
Clean up tracing stuff more, get rid of the trace log since
its not all that useful. Fix a few bugs with python/C++
integration.
--HG--
extra : convert_revision : a706512f7dc8b0c88f1ff96fe35ab8fbf9548b78
Diffstat (limited to 'src/cpu/o3')
-rw-r--r-- | src/cpu/o3/commit_impl.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cpu/o3/commit_impl.hh b/src/cpu/o3/commit_impl.hh index f1457922c..18fb2aaa3 100644 --- a/src/cpu/o3/commit_impl.hh +++ b/src/cpu/o3/commit_impl.hh @@ -1106,7 +1106,8 @@ DefaultCommit<Impl>::commitHead(DynInstPtr &head_inst, unsigned inst_num) if (head_inst->traceData) { head_inst->traceData->setFetchSeq(head_inst->seqNum); head_inst->traceData->setCPSeq(thread[tid]->numInst); - head_inst->traceData->finalize(); + head_inst->traceData->dump(); + delete head_inst->traceData; head_inst->traceData = NULL; } |