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/simple | |
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/simple')
-rw-r--r-- | src/cpu/simple/base.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cpu/simple/base.cc b/src/cpu/simple/base.cc index b8d1f3bed..80b137909 100644 --- a/src/cpu/simple/base.cc +++ b/src/cpu/simple/base.cc @@ -427,7 +427,9 @@ BaseSimpleCPU::postExecute() traceFunctions(thread->readPC()); if (traceData) { - traceData->finalize(); + traceData->dump(); + delete traceData; + traceData = NULL; } } |