Gabe Black has uploaded this change for review. ( https://gem5-review.googlesource.com/c/public/gem5/+/49146 )

Change subject: cpu-o3: Fix minor style issue in rename_map.hh.
......................................................................

cpu-o3: Fix minor style issue in rename_map.hh.

Change-Id: I670e504320b41e38666dab6eb7a83e4a39bc3b00
---
M src/cpu/o3/rename_map.hh
1 file changed, 7 insertions(+), 6 deletions(-)



diff --git a/src/cpu/o3/rename_map.hh b/src/cpu/o3/rename_map.hh
index e390ef6..f6ed85b 100644
--- a/src/cpu/o3/rename_map.hh
+++ b/src/cpu/o3/rename_map.hh
@@ -223,7 +223,8 @@
      * @return A RenameInfo pair indicating both the new and previous
      * physical registers.
      */
-    RenameInfo rename(const RegId& arch_reg)
+    RenameInfo
+    rename(const RegId& arch_reg)
     {
         switch (arch_reg.classValue()) {
           case IntRegClass:
@@ -242,11 +243,11 @@
             return ccMap.rename(arch_reg);
           case MiscRegClass:
             {
-            // misc regs aren't really renamed, just remapped
-            PhysRegIdPtr phys_reg = lookup(arch_reg);
-            // Set the new register to the previous one to keep the same
-            // mapping throughout the execution.
-            return RenameInfo(phys_reg, phys_reg);
+                // misc regs aren't really renamed, just remapped
+                PhysRegIdPtr phys_reg = lookup(arch_reg);
+ // Set the new register to the previous one to keep the same
+                // mapping throughout the execution.
+                return RenameInfo(phys_reg, phys_reg);
             }

           default:

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/49146
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: I670e504320b41e38666dab6eb7a83e4a39bc3b00
Gerrit-Change-Number: 49146
Gerrit-PatchSet: 1
Gerrit-Owner: Gabe Black <[email protected]>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

Reply via email to