diff options
author | Faissal Sleiman <Faissal.Sleiman@arm.com> | 2013-10-17 10:20:45 -0500 |
---|---|---|
committer | Faissal Sleiman <Faissal.Sleiman@arm.com> | 2013-10-17 10:20:45 -0500 |
commit | 9195f1fbfd6c754c81271144f7e42e5102ec1d67 (patch) | |
tree | 418bc86719f628c4df3bacd475872ae93f5679b3 /src | |
parent | e516531bd0010eec4ab3352ff0b12057782a40ce (diff) | |
download | gem5-9195f1fbfd6c754c81271144f7e42e5102ec1d67.tar.xz |
cpu: Change IEW DPRINTF to use IEW debug flag
IEW DPRINTF uses Decode debug flag, which appears to be a copying error. This
patch changes this to the IEW Debug flag.
Diffstat (limited to 'src')
-rw-r--r-- | src/cpu/o3/iew_impl.hh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cpu/o3/iew_impl.hh b/src/cpu/o3/iew_impl.hh index 5d18789c3..947318d60 100644 --- a/src/cpu/o3/iew_impl.hh +++ b/src/cpu/o3/iew_impl.hh @@ -53,7 +53,6 @@ #include "cpu/o3/iew.hh" #include "cpu/timebuf.hh" #include "debug/Activity.hh" -#include "debug/Decode.hh" #include "debug/Drain.hh" #include "debug/IEW.hh" #include "debug/O3PipeView.hh" @@ -645,7 +644,7 @@ DefaultIEW<Impl>::skidInsert(ThreadID tid) insts[tid].pop(); - DPRINTF(Decode,"[tid:%i]: Inserting [sn:%lli] PC:%s into " + DPRINTF(IEW,"[tid:%i]: Inserting [sn:%lli] PC:%s into " "dispatch skidBuffer %i\n",tid, inst->seqNum, inst->pcState(),tid); |