Two minor fixes.
src/cpu/o3/lsq_unit_impl.hh: Missed this name change. src/cpu/thread_state.cc: Fix for stats. --HG-- extra : convert_revision : 50ea862f97f2fbc75c1c03d5700df1e8f2c0d122
This commit is contained in:
parent
c14c78fa3e
commit
caca57421b
2 changed files with 3 additions and 1 deletions
|
@ -853,7 +853,7 @@ LSQUnit<Impl>::recvRetry()
|
||||||
|
|
||||||
if (dcachePort->sendTiming(retryPkt)) {
|
if (dcachePort->sendTiming(retryPkt)) {
|
||||||
storePostSend(retryPkt);
|
storePostSend(retryPkt);
|
||||||
sendingPkt = NULL;
|
retryPkt = NULL;
|
||||||
isStoreBlocked = false;
|
isStoreBlocked = false;
|
||||||
} else {
|
} else {
|
||||||
// Still blocked!
|
// Still blocked!
|
||||||
|
|
|
@ -45,6 +45,8 @@ ThreadState::ThreadState(int _cpuId, int _tid, MemObject *mem,
|
||||||
funcExeInst(0), storeCondFailures(0)
|
funcExeInst(0), storeCondFailures(0)
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
|
numInst = 0;
|
||||||
|
numLoad = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if FULL_SYSTEM
|
#if FULL_SYSTEM
|
||||||
|
|
Loading…
Reference in a new issue