[Bug bootstrap/65910] r222473 breaks x86_64 darwin bootstrap

2015-04-28 Thread cmtice at google dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65910

--- Comment #4 from Caroline Tice cmtice at google dot com ---
Has anyone actually committed this fix?  I'm not seeing it in my tree yet


[Bug bootstrap/65910] r222473 breaks x86_64 darwin bootstrap

2015-04-28 Thread dje at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65910

David Edelsohn dje at gcc dot gnu.org changed:

   What|Removed |Added

 Target|x86_64-apple-darwin14   |x86_64-apple-darwin14,
   ||powerpc-ibm-aix*
 Status|NEW |RESOLVED
 CC||dje at gcc dot gnu.org
 Resolution|--- |FIXED

--- Comment #6 from David Edelsohn dje at gcc dot gnu.org ---
Patch committed.


[Bug bootstrap/65910] r222473 breaks x86_64 darwin bootstrap

2015-04-28 Thread dje at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65910

--- Comment #5 from David Edelsohn dje at gcc dot gnu.org ---
Author: dje
Date: Tue Apr 28 17:16:19 2015
New Revision: 222535

URL: https://gcc.gnu.org/viewcvs?rev=222535root=gccview=rev
Log:
2015-04-28  Dominique d'Humieres  domi...@lps.ens.fr

PR bootstrap/65910
* varasm.c (assemble_end_function): Guard ASM_DECLARE_FUNCTION_SIZE.


Modified:
trunk/gcc/ChangeLog
trunk/gcc/varasm.c


[Bug bootstrap/65910] r222473 breaks x86_64 darwin bootstrap

2015-04-28 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65910

--- Comment #3 from Richard Biener rguenth at gcc dot gnu.org ---
Looks obvious to me.


[Bug bootstrap/65910] r222473 breaks x86_64 darwin bootstrap

2015-04-27 Thread howarth.at.gcc at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65910

--- Comment #1 from Jack Howarth howarth.at.gcc at gmail dot com ---
This is from a bootstrap on darwin14 with the command...

% ../gcc-6-20150427/configure --prefix=/Users/howarth/dist
-enable-languages=c,c++ --with-gmp=/sw --with-libiconv-prefix=/sw
--with-isl=/sw --with-mpc=/sw --with-system-zlib --x-includes=/usr/X11/include
--x-libraries=/usr/X11/lib --with-build-config=bootstrap-debug


[Bug bootstrap/65910] r222473 breaks x86_64 darwin bootstrap

2015-04-27 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65910

Dominique d'Humieres dominiq at lps dot ens.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Last reconfirmed||2015-04-28
 Ever confirmed|0   |1

--- Comment #2 from Dominique d'Humieres dominiq at lps dot ens.fr ---
I have fixed it with the patch

--- ../_clean/gcc/varasm.c  2015-04-27 20:19:05.0 +0200
+++ gcc/varasm.c2015-04-27 21:34:14.0 +0200
@@ -1864,10 +1864,12 @@ assemble_end_function (tree decl, const 

   save_text_section = in_section;
   switch_to_section (unlikely_text_section ());
+#ifdef ASM_DECLARE_FUNCTION_SIZE
   if (cold_function_name != NULL_TREE)
ASM_DECLARE_FUNCTION_SIZE (asm_out_file,
   IDENTIFIER_POINTER (cold_function_name),
   decl);
+#endif
   ASM_OUTPUT_LABEL (asm_out_file,
crtl-subsections.cold_section_end_label);
   if (first_function_block_is_cold)
switch_to_section (text_section);