public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/65910] New: r222473 breaks x86_64 darwin bootstrap
@ 2015-04-28  4:15 howarth.at.gcc at gmail dot com
  2015-04-28  4:16 ` [Bug bootstrap/65910] " howarth.at.gcc at gmail dot com
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: howarth.at.gcc at gmail dot com @ 2015-04-28  4:15 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65910

            Bug ID: 65910
           Summary: r222473 breaks x86_64 darwin bootstrap
           Product: gcc
           Version: 6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: howarth.at.gcc at gmail dot com
  Target Milestone: ---

The commit...

------------------------------------------------------------------------
r222473 | ctice | 2015-04-27 12:44:35 -0400 (Mon, 27 Apr 2015) | 17 lines

Give proper type and size to named cold partitions.

2015-04-27  Caroline Tice  <cmtice@google.com>

        * final.c (final_scan_insn):  Output cold_function_nmae as function
        type.
        * varasm.c (cold_function_name):  Make gloval.
        (assemble_start_function):  Re-set cold_function_name.
        (assemble_end_function): Output cold partition size.
        * varasm.h (cold_fun ction_name):  Declare global.

2015-04-27  Caroline Tice  <cmtice@google.com>

        * gcc.dg/tree-prof/cold_partition_label.c (main): Check for cold
        partition size.


breaks the bootstrap of gcc trunk on x86_64-apple-darwin using the clang
compilers from Xcode 6.3. The previous commit r222472 bootstraps fine. The
bootstrap failure appears as...

g++ -c   -g  -DIN_GCC    -fno-exceptions -fno-rtti -fasynchronous-unwind-tables
-W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wno-format
-Wmissing-format-attribute -Woverloaded-virtual -pedantic -Wno-long-long
-Wno-variadic-macros -Wno-overlength-strings -fno-common  -DHAVE_CONFIG_H -I.
-I. -I../../gcc-6-20150427/gcc -I../../gcc-6-20150427/gcc/.
-I../../gcc-6-20150427/gcc/../include
-I../../gcc-6-20150427/gcc/../libcpp/include -I/sw/include -I/sw/include 
-I../../gcc-6-20150427/gcc/../libdecnumber
-I../../gcc-6-20150427/gcc/../libdecnumber/dpd -I../libdecnumber
-I../../gcc-6-20150427/gcc/../libbacktrace -I/sw/include -I/sw/include -o
varasm.o -MT varasm.o -MMD -MP -MF ./.deps/varasm.TPo
../../gcc-6-20150427/gcc/varasm.c
...
../../gcc-6-20150427/gcc/varasm.c:1868:2: error: use of undeclared identifier
'ASM_DECLARE_FUNCTION_SIZE'
        ASM_DECLARE_FUNCTION_SIZE (asm_out_file,
        ^


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug bootstrap/65910] r222473 breaks x86_64 darwin bootstrap
  2015-04-28  4:15 [Bug bootstrap/65910] New: r222473 breaks x86_64 darwin bootstrap howarth.at.gcc at gmail dot com
@ 2015-04-28  4:16 ` howarth.at.gcc at gmail dot com
  2015-04-28  5:52 ` dominiq at lps dot ens.fr
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: howarth.at.gcc at gmail dot com @ 2015-04-28  4:16 UTC (permalink / raw)
  To: gcc-bugs

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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug bootstrap/65910] r222473 breaks x86_64 darwin bootstrap
  2015-04-28  4:15 [Bug bootstrap/65910] New: r222473 breaks x86_64 darwin bootstrap howarth.at.gcc at gmail dot com
  2015-04-28  4:16 ` [Bug bootstrap/65910] " howarth.at.gcc at gmail dot com
@ 2015-04-28  5:52 ` dominiq at lps dot ens.fr
  2015-04-28  9:37 ` rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: dominiq at lps dot ens.fr @ 2015-04-28  5:52 UTC (permalink / raw)
  To: gcc-bugs

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.000000000 +0200
+++ gcc/varasm.c        2015-04-27 21:34:14.000000000 +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);


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug bootstrap/65910] r222473 breaks x86_64 darwin bootstrap
  2015-04-28  4:15 [Bug bootstrap/65910] New: r222473 breaks x86_64 darwin bootstrap howarth.at.gcc at gmail dot com
  2015-04-28  4:16 ` [Bug bootstrap/65910] " howarth.at.gcc at gmail dot com
  2015-04-28  5:52 ` dominiq at lps dot ens.fr
@ 2015-04-28  9:37 ` rguenth at gcc dot gnu.org
  2015-04-28 17:16 ` dje at gcc dot gnu.org
  2015-04-28 17:18 ` dje at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-04-28  9:37 UTC (permalink / raw)
  To: gcc-bugs

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.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug bootstrap/65910] r222473 breaks x86_64 darwin bootstrap
  2015-04-28  4:15 [Bug bootstrap/65910] New: r222473 breaks x86_64 darwin bootstrap howarth.at.gcc at gmail dot com
                   ` (2 preceding siblings ...)
  2015-04-28  9:37 ` rguenth at gcc dot gnu.org
@ 2015-04-28 17:16 ` dje at gcc dot gnu.org
  2015-04-28 17:18 ` dje at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: dje at gcc dot gnu.org @ 2015-04-28 17:16 UTC (permalink / raw)
  To: gcc-bugs

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=222535&root=gcc&view=rev
Log:
2015-04-28  Dominique d'Humieres  <dominiq@lps.ens.fr>

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


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug bootstrap/65910] r222473 breaks x86_64 darwin bootstrap
  2015-04-28  4:15 [Bug bootstrap/65910] New: r222473 breaks x86_64 darwin bootstrap howarth.at.gcc at gmail dot com
                   ` (3 preceding siblings ...)
  2015-04-28 17:16 ` dje at gcc dot gnu.org
@ 2015-04-28 17:18 ` dje at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: dje at gcc dot gnu.org @ 2015-04-28 17:18 UTC (permalink / raw)
  To: gcc-bugs

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.


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-04-28 17:18 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-28  4:15 [Bug bootstrap/65910] New: r222473 breaks x86_64 darwin bootstrap howarth.at.gcc at gmail dot com
2015-04-28  4:16 ` [Bug bootstrap/65910] " howarth.at.gcc at gmail dot com
2015-04-28  5:52 ` dominiq at lps dot ens.fr
2015-04-28  9:37 ` rguenth at gcc dot gnu.org
2015-04-28 17:16 ` dje at gcc dot gnu.org
2015-04-28 17:18 ` dje at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).