From: Thomas Preud'homme Date: Fri, 24 Apr 2015 06:02:10 +0000 (+0000) Subject: unknown-elf.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): fix ternary operator in fprintf and... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6a61f9bf3397869caa41a450229d8f3fdbad1be7;p=gcc.git unknown-elf.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): fix ternary operator in fprintf and harmonize spacing. 2015-04-24 Thomas Preud'homme * config/arm/unknown-elf.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): fix ternary operator in fprintf and harmonize spacing. From-SVN: r222401 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5cbb130dfb5..b1c5356eeee 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-04-24 Thomas Preud'homme + + * config/arm/unknown-elf.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): fix + ternary operator in fprintf and harmonize spacing. + 2015-04-24 Uros Bizjak * config/i386/sse.md (*vec_concatv2sf_sse4_1): Do not allow both diff --git a/gcc/config/arm/unknown-elf.h b/gcc/config/arm/unknown-elf.h index df0b9cef39a..2e5ab7edf48 100644 --- a/gcc/config/arm/unknown-elf.h +++ b/gcc/config/arm/unknown-elf.h @@ -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)