cpu: o3: slight correction to identation in rename_impl.hh

This commit is contained in:
Nilay Vaish 2015-07-26 10:20:07 -05:00
parent 4f7c969e27
commit 6e354e82d9

View file

@ -591,21 +591,21 @@ DefaultRename<Impl>::renameInsts(ThreadID tid)
//For store instruction, check SQ size and take into account the inflight stores
if (inst->isLoad()) {
if(calcFreeLQEntries(tid) <= 0) {
DPRINTF(Rename, "[tid:%u]: Cannot rename due to no free LQ\n");
source = LQ;
incrFullStat(source);
break;
}
if (calcFreeLQEntries(tid) <= 0) {
DPRINTF(Rename, "[tid:%u]: Cannot rename due to no free LQ\n");
source = LQ;
incrFullStat(source);
break;
}
}
if (inst->isStore()) {
if(calcFreeSQEntries(tid) <= 0) {
DPRINTF(Rename, "[tid:%u]: Cannot rename due to no free SQ\n");
source = SQ;
incrFullStat(source);
break;
}
if (calcFreeSQEntries(tid) <= 0) {
DPRINTF(Rename, "[tid:%u]: Cannot rename due to no free SQ\n");
source = SQ;
incrFullStat(source);
break;
}
}
insts_to_rename.pop_front();