From: Dominique d'Humieres Date: Mon, 3 Jul 2017 17:42:54 +0000 (+0200) Subject: re PR bootstrap/81033 (there are cases where ld64 is not able to determine correct... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7001cb1ffb77abaa17a37bf63efb0086c7377ebd;p=gcc.git re PR bootstrap/81033 (there are cases where ld64 is not able to determine correct atom boundaries from the output GCC currently produces) 2017-07-03 Dominique d'Humieres PR target/81033 * config/darwin.c (darwin_function_switched_text_sections): Fix spaces. From-SVN: r249930 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index be3b09418b0..89c16e4bbcc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2017-07-03 Dominique d'Humieres + + PR target/81033 + * config/darwin.c (darwin_function_switched_text_sections): + Fix spaces. + 2017-07-03 Jan Hubicka * tree-vect-loop-manip.c (vect_do_peeling): Fix scaling up. diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c index 4010ed31e48..9a8cf31d400 100644 --- a/gcc/config/darwin.c +++ b/gcc/config/darwin.c @@ -3684,7 +3684,7 @@ void darwin_function_switched_text_sections (FILE *fp, tree decl, bool new_is_cold) { /* Make sure we pick up all the relevant quotes etc. */ - assemble_name_raw (fp, new_is_cold?"__cold_sect_of_":"__hot_sect_of_"); + assemble_name_raw (fp, new_is_cold ? "__cold_sect_of_" : "__hot_sect_of_"); assemble_name_raw (fp, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl))); fputs (":\n", fp); }