Shorten long lines in linux-aarch64-low.c
authorYao Qi <yao.qi@linaro.org>
Wed, 30 Sep 2015 15:01:47 +0000 (16:01 +0100)
committerYao Qi <yao.qi@linaro.org>
Wed, 30 Sep 2015 15:01:47 +0000 (16:01 +0100)
Happen to see these lines are too long.  This patch shortens them.

gdb/gdbserver:

2015-09-30  Yao Qi  <yao.qi@linaro.org>

* linux-aarch64-low.c (emit_movk): Shorten a long line.
(emit_load_store_pair): Likewise.

gdb/gdbserver/ChangeLog
gdb/gdbserver/linux-aarch64-low.c

index 95e370cfd6611e314dbe47debb81ce600bf956bd..b6318941f266b31d33fc674ead30d3f926a31dd3 100644 (file)
@@ -1,3 +1,8 @@
+2015-09-30  Yao Qi  <yao.qi@linaro.org>
+
+       * linux-aarch64-low.c (emit_movk): Shorten a long line.
+       (emit_load_store_pair): Likewise.
+
 2015-09-25  Simon Marchi  <simon.marchi@ericsson.com>
 
        * dll.c (match_dll): Add cast(s).
index bc9a5c703ef95c34d8b31d12eb3c976806060d31..5592e619bbd45ccfc67a87071f3e17d44bafc390 100644 (file)
@@ -1083,7 +1083,8 @@ emit_load_store_pair (uint32_t *buf, enum aarch64_opcodes opcode,
     }
 
   return emit_insn (buf, opcode | opc | pre_index | write_back
-                   | ENCODE (operand.index >> 3, 7, 15) | ENCODE (rt2.num, 5, 10)
+                   | ENCODE (operand.index >> 3, 7, 15)
+                   | ENCODE (rt2.num, 5, 10)
                    | ENCODE (rn.num, 5, 5) | ENCODE (rt.num, 5, 0));
 }
 
@@ -1490,7 +1491,8 @@ emit_mov (uint32_t *buf, struct aarch64_register rd,
    SHIFT is the logical shift left to apply to IMM.   */
 
 static int
-emit_movk (uint32_t *buf, struct aarch64_register rd, uint32_t imm, unsigned shift)
+emit_movk (uint32_t *buf, struct aarch64_register rd, uint32_t imm,
+          unsigned shift)
 {
   uint32_t size = ENCODE (rd.is64, 1, 31);
 
This page took 0.032453 seconds and 4 git commands to generate.