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.
This commit is contained in:
parent
e516531bd0
commit
9195f1fbfd
1 changed files with 1 additions and 2 deletions
|
@ -53,7 +53,6 @@
|
||||||
#include "cpu/o3/iew.hh"
|
#include "cpu/o3/iew.hh"
|
||||||
#include "cpu/timebuf.hh"
|
#include "cpu/timebuf.hh"
|
||||||
#include "debug/Activity.hh"
|
#include "debug/Activity.hh"
|
||||||
#include "debug/Decode.hh"
|
|
||||||
#include "debug/Drain.hh"
|
#include "debug/Drain.hh"
|
||||||
#include "debug/IEW.hh"
|
#include "debug/IEW.hh"
|
||||||
#include "debug/O3PipeView.hh"
|
#include "debug/O3PipeView.hh"
|
||||||
|
@ -645,7 +644,7 @@ DefaultIEW<Impl>::skidInsert(ThreadID tid)
|
||||||
|
|
||||||
insts[tid].pop();
|
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,
|
"dispatch skidBuffer %i\n",tid, inst->seqNum,
|
||||||
inst->pcState(),tid);
|
inst->pcState(),tid);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue