+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).
 
     }
 
   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));
 }
 
    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);