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

Change subject: cpu: Fix syntax in cpu/simple_thread.hh.
......................................................................

cpu: Fix syntax in cpu/simple_thread.hh.

Change-Id: Id23de4651eb6b03b569ab48fd1dcf186e7b192dd
---
M src/cpu/simple_thread.hh
1 file changed, 5 insertions(+), 3 deletions(-)



diff --git a/src/cpu/simple_thread.hh b/src/cpu/simple_thread.hh
index 88f1e6b..9d2d3d5 100644
--- a/src/cpu/simple_thread.hh
+++ b/src/cpu/simple_thread.hh
@@ -113,7 +113,8 @@
     bool memAccPredicate;

   public:
-    std::string name() const
+    std::string
+    name() const
     {
         return csprintf("%s.[tid:%i]", baseCpu->name(), threadId());
     }
@@ -215,7 +216,8 @@
PortProxy &getPhysProxy() override { return ThreadState::getPhysProxy(); } PortProxy &getVirtProxy() override { return ThreadState::getVirtProxy(); }

-    void initMemProxies(ThreadContext *tc) override
+    void
+    initMemProxies(ThreadContext *tc) override
     {
         ThreadState::initMemProxies(tc);
     }
@@ -574,4 +576,4 @@
 };


-#endif // __CPU_CPU_EXEC_CONTEXT_HH__
+#endif // __CPU_SIMPLE_THREAD_HH__

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/45860
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: Id23de4651eb6b03b569ab48fd1dcf186e7b192dd
Gerrit-Change-Number: 45860
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