diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2015-07-26 10:20:07 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2015-07-26 10:20:07 -0500 |
commit | 6e354e82d9395b20f5f148cd545d0666b626e8ac (patch) | |
tree | d40f2fd8a807ddc9638f292205754f9ecf19b6ef /src/cpu | |
parent | 4f7c969e27a7de71301724707b1db1d7ab3f0956 (diff) | |
download | gem5-6e354e82d9395b20f5f148cd545d0666b626e8ac.tar.xz |
cpu: o3: slight correction to identation in rename_impl.hh
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/o3/rename_impl.hh | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/cpu/o3/rename_impl.hh b/src/cpu/o3/rename_impl.hh index 7bf33d3ff..43b7ba9aa 100644 --- a/src/cpu/o3/rename_impl.hh +++ b/src/cpu/o3/rename_impl.hh @@ -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(); |