arch-arm: Fix style in decoder.hh.
authorGabe Black <gabe.black@gmail.com>
Fri, 29 Jan 2021 01:04:24 +0000 (17:04 -0800)
committerGabe Black <gabe.black@gmail.com>
Fri, 29 Jan 2021 22:27:28 +0000 (22:27 +0000)
Change-Id: I45cf1fefc6145393abec2de12e74816c0c8ac0e9
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/40096
Reviewed-by: Daniel Carvalho <odanrc@yahoo.com.br>
Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Maintainer: Giacomo Travaglini <giacomo.travaglini@arm.com>
Tested-by: kokoro <noreply+kokoro@google.com>
src/arch/arm/decoder.hh

index 598e8653b2218377a65b45198a77b01195969423..fa5b15eb1d73a2c286dfdc3deb4107c4d7bcd76d 100644 (file)
@@ -169,7 +169,8 @@ class Decoder : public InstDecoder
      * @param mach_inst A pre-decoded instruction
      * @retval A pointer to the corresponding StaticInst object.
      */
-    StaticInstPtr decode(ExtMachInst mach_inst, Addr addr)
+    StaticInstPtr
+    decode(ExtMachInst mach_inst, Addr addr)
     {
         return defaultCache.decode(this, mach_inst, addr);
     }
@@ -197,13 +198,15 @@ class Decoder : public InstDecoder
 
 
   public: // ARM-specific decoder state manipulation
-    void setContext(FPSCR fpscr)
+    void
+    setContext(FPSCR fpscr)
     {
         fpscrLen = fpscr.len;
         fpscrStride = fpscr.stride;
     }
 
-    void setSveLen(uint8_t len)
+    void
+    setSveLen(uint8_t len)
     {
         sveLen = len;
     }