changeset e1309937d313 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=e1309937d313
description:
        cpu: o3: slight correction to identation in rename_impl.hh

diffstat:

 src/cpu/o3/rename_impl.hh |  24 ++++++++++++------------
 1 files changed, 12 insertions(+), 12 deletions(-)

diffs (37 lines):

diff -r cafae9abd4e4 -r e1309937d313 src/cpu/o3/rename_impl.hh
--- a/src/cpu/o3/rename_impl.hh Fri Jul 24 12:25:23 2015 -0700
+++ b/src/cpu/o3/rename_impl.hh Sun Jul 26 10:20:07 2015 -0500
@@ -591,21 +591,21 @@
         //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();
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to