]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gas/config/tc-i386.c: Break long line
authorH.J. Lu <hjl.tools@gmail.com>
Sat, 21 Jul 2018 17:57:54 +0000 (10:57 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Sat, 21 Jul 2018 17:57:54 +0000 (10:57 -0700)
* config/tc-i386.c (match_simd_size): Break long line.
(match_mem_size): Likewise.

gas/ChangeLog
gas/config/tc-i386.c

index bee9664ad19315335c39c0507762f657caf9262d..3253a9fdc676bc62f506717d406a8f6e1ee01470 100644 (file)
@@ -1,3 +1,8 @@
+2018-07-20  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * config/tc-i386.c (match_simd_size): Break long line.
+       (match_mem_size): Likewise.
+
 2018-07-20  H.J. Lu  <hongjiu.lu@intel.com>
 
        * config/tc-i386.c (match_reg_size): Renamed to ...
index 02de778397dbac0180470b0e3b296391e8a48b6f..c4ccffc75fa65348d02f66f7059c443c06efdfa0 100644 (file)
@@ -1916,11 +1916,12 @@ match_operand_size (const insn_template *t, unsigned int wanted,
               && !t->operand_types[wanted].bitfield.tbyte));
 }
 
-/* Return 1 if there is no conflict in SIMD register between operand GIVEN
-   and opeand WANTED for instruction template T.  */
+/* Return 1 if there is no conflict in SIMD register between operand
+   GIVEN and opeand WANTED for instruction template T.  */
 
 static INLINE int
-match_simd_size (const insn_template *t, unsigned int wanted, unsigned int given)
+match_simd_size (const insn_template *t, unsigned int wanted,
+                unsigned int given)
 {
   return !((i.types[given].bitfield.xmmword
            && !t->operand_types[wanted].bitfield.xmmword)
@@ -1934,7 +1935,8 @@ match_simd_size (const insn_template *t, unsigned int wanted, unsigned int given
    and opeand WANTED for instruction template T.  */
 
 static INLINE int
-match_mem_size (const insn_template *t, unsigned int wanted, unsigned int given)
+match_mem_size (const insn_template *t, unsigned int wanted,
+               unsigned int given)
 {
   return (match_operand_size (t, wanted, given)
          && !((i.types[given].bitfield.unspecified