cpu: o3: slight correction to identation in rename_impl.hh
authorNilay Vaish <nilay@cs.wisc.edu>
Sun, 26 Jul 2015 15:20:07 +0000 (10:20 -0500)
committerNilay Vaish <nilay@cs.wisc.edu>
Sun, 26 Jul 2015 15:20:07 +0000 (10:20 -0500)
src/cpu/o3/rename_impl.hh

index 7bf33d3ffc305e7d3c65ee8c2de7f5b699615faa..43b7ba9aa18057228be8ae577a34cd2c42d7cd8a 100644 (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();