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:
Kevin Lim 2006-06-09 17:21:37 -04:00
parent c14c78fa3e
commit caca57421b
2 changed files with 3 additions and 1 deletions

View file

@ -853,7 +853,7 @@ LSQUnit<Impl>::recvRetry()
if (dcachePort->sendTiming(retryPkt)) {
storePostSend(retryPkt);
sendingPkt = NULL;
retryPkt = NULL;
isStoreBlocked = false;
} else {
// Still blocked!

View file

@ -45,6 +45,8 @@ ThreadState::ThreadState(int _cpuId, int _tid, MemObject *mem,
funcExeInst(0), storeCondFailures(0)
#endif
{
numInst = 0;
numLoad = 0;
}
#if FULL_SYSTEM