unknown-elf.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): fix ternary operator in fprintf and...
authorThomas Preud'homme <thomas.preudhomme@arm.com>
Fri, 24 Apr 2015 06:02:10 +0000 (06:02 +0000)
committerThomas Preud'homme <thopre01@gcc.gnu.org>
Fri, 24 Apr 2015 06:02:10 +0000 (06:02 +0000)
2015-04-24  Thomas Preud'homme  <thomas.preudhomme@arm.com>

    * config/arm/unknown-elf.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): fix
    ternary operator in fprintf and harmonize spacing.

From-SVN: r222401

gcc/ChangeLog
gcc/config/arm/unknown-elf.h

index 5cbb130dfb5f5ac57775ff01aed9d803281d978d..b1c5356eeeec1ec6f2e068bb0314fd07988c155c 100644 (file)
@@ -1,3 +1,8 @@
+2015-04-24  Thomas Preud'homme  <thomas.preudhomme@arm.com>
+
+       * config/arm/unknown-elf.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): fix
+       ternary operator in fprintf and harmonize spacing.
+
 2015-04-24  Uros Bizjak  <ubizjak@gmail.com>
 
        * config/i386/sse.md (*vec_concatv2sf_sse4_1): Do not allow both
index df0b9cef39adb88fd252303a317bf565c8931c3c..2e5ab7edf48a80ee4ec2eac99700e82f45dfa2aa 100644 (file)
@@ -80,9 +80,9 @@
                                                                        \
       ASM_OUTPUT_ALIGN (FILE, floor_log2 (ALIGN / BITS_PER_UNIT));     \
       ASM_OUTPUT_LABEL (FILE, NAME);                                   \
-      fprintf (FILE, "\t.space\t%d\n", SIZE ? (int)(SIZE) : 1);                \
+      fprintf (FILE, "\t.space\t%d\n", SIZE ? (int) SIZE : 1);         \
       fprintf (FILE, "\t.size\t%s, %d\n",                              \
-              NAME, SIZE ? (int) SIZE, 1);                             \
+              NAME, SIZE ? (int) SIZE : 1);                            \
     }                                                                  \
   while (0)