public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/53955] New: [4.8 Regression] Missing prototypes in i386.c, bootstrap failure with --disable-build-poststage1-with-cxx
@ 2012-07-13 17:00 tkoenig at gcc dot gnu.org
  2012-07-13 17:01 ` [Bug bootstrap/53955] " tkoenig at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: tkoenig at gcc dot gnu.org @ 2012-07-13 17:00 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53955

             Bug #: 53955
           Summary: [4.8 Regression] Missing prototypes in i386.c,
                    bootstrap failure with
                    --disable-build-poststage1-with-cxx
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Keywords: build
          Severity: normal
          Priority: P3
         Component: bootstrap
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: tkoenig@gcc.gnu.org


home/ig25/Gcc/trunk-bin/./prev-gcc/xgcc -B/home/ig25/Gcc/trunk-bin/./prev-gcc/
-B/home/ig25/x86_64-unknown-linux-gnu/bin/
-B/home/ig25/x86_64-unknown-linux-gnu/bin/
-B/home/ig25/x86_64-unknown-linux-gnu/lib/ -isystem
/home/ig25/x86_64-unknown-linux-gnu/include -isystem
/home/ig25/x86_64-unknown-linux-gnu/sys-include    -c   -g -O2 -gtoggle
-DIN_GCC   -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual
-Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic
-Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror
-Wold-style-definition -Wc++-compat -fno-common  -DHAVE_CONFIG_H -I. -I.
-I../../trunk/gcc -I../../trunk/gcc/. -I../../trunk/gcc/../include
-I../../trunk/gcc/../libcpp/include -I/usr/local/include -I/usr/local/include
-I/usr/local/include  -I../../trunk/gcc/../libdecnumber
-I../../trunk/gcc/../libdecnumber/bid -I../libdecnumber    \
        ../../trunk/gcc/config/i386/i386.c -o i386.o
../../trunk/gcc/config/i386/i386.c:40070:1: error: no previous prototype for
'ix86_init_cost' [-Werror=missing-prototypes]
 ix86_init_cost (struct loop *loop_info ATTRIBUTE_UNUSED)
 ^
../../trunk/gcc/config/i386/i386.c:40080:1: error: no previous prototype for
'ix86_add_stmt_cost' [-Werror=missing-prototypes]
 ix86_add_stmt_cost (void *data, int count, enum vect_cost_for_stmt kind,
 ^
../../trunk/gcc/config/i386/i386.c:40107:1: error: no previous prototype for
'ix86_finish_cost' [-Werror=missing-prototypes]
 ix86_finish_cost (void *data)
 ^
../../trunk/gcc/config/i386/i386.c:40115:1: error: no previous prototype for
'ix86_destroy_cost_data' [-Werror=missing-prototypes]
 ix86_destroy_cost_data (void *data)
 ^
cc1: all warnings being treated as errors
make[3]: *** [i386.o] Error 1
make[3]: Leaving directory `/home/ig25/Gcc/trunk-bin/gcc'
make[2]: *** [all-stage2-gcc] Error 2
make[2]: Leaving directory `/home/ig25/Gcc/trunk-bin'
make[1]: *** [stage2-bubble] Error 2
make[1]: Leaving directory `/home/ig25/Gcc/trunk-bin'
make: *** [all] Error 2

Configure line was

../trunk/^Cnfigure --prefix=$HOME --enable-languages=c,fortran,c++
--disable-build-poststage1-with-cxx --with-mpfr=/usr/local
--with-gmp=/usr/local --with-mpc=/usr/local


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

* [Bug bootstrap/53955] [4.8 Regression] Missing prototypes in i386.c, bootstrap failure with --disable-build-poststage1-with-cxx
  2012-07-13 17:00 [Bug bootstrap/53955] New: [4.8 Regression] Missing prototypes in i386.c, bootstrap failure with --disable-build-poststage1-with-cxx tkoenig at gcc dot gnu.org
@ 2012-07-13 17:01 ` tkoenig at gcc dot gnu.org
  2012-07-13 17:05 ` steven at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: tkoenig at gcc dot gnu.org @ 2012-07-13 17:01 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53955

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.8.0


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

* [Bug bootstrap/53955] [4.8 Regression] Missing prototypes in i386.c, bootstrap failure with --disable-build-poststage1-with-cxx
  2012-07-13 17:00 [Bug bootstrap/53955] New: [4.8 Regression] Missing prototypes in i386.c, bootstrap failure with --disable-build-poststage1-with-cxx tkoenig at gcc dot gnu.org
  2012-07-13 17:01 ` [Bug bootstrap/53955] " tkoenig at gcc dot gnu.org
@ 2012-07-13 17:05 ` steven at gcc dot gnu.org
  2012-07-13 21:02 ` wschmidt at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: steven at gcc dot gnu.org @ 2012-07-13 17:05 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53955

Steven Bosscher <steven at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2012-07-13
                 CC|                            |wschmidt at gcc dot gnu.org
     Ever Confirmed|0                           |1

--- Comment #1 from Steven Bosscher <steven at gcc dot gnu.org> 2012-07-13 17:04:48 UTC ---
Caused by the new vectorizer cost model,

http://gcc.gnu.org/viewcvs?view=revision&revision=189460

Those functions should be static, I think.


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

* [Bug bootstrap/53955] [4.8 Regression] Missing prototypes in i386.c, bootstrap failure with --disable-build-poststage1-with-cxx
  2012-07-13 17:00 [Bug bootstrap/53955] New: [4.8 Regression] Missing prototypes in i386.c, bootstrap failure with --disable-build-poststage1-with-cxx tkoenig at gcc dot gnu.org
  2012-07-13 17:01 ` [Bug bootstrap/53955] " tkoenig at gcc dot gnu.org
  2012-07-13 17:05 ` steven at gcc dot gnu.org
@ 2012-07-13 21:02 ` wschmidt at gcc dot gnu.org
  2012-07-13 22:33 ` wschmidt at gcc dot gnu.org
  2012-07-13 22:34 ` wschmidt at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: wschmidt at gcc dot gnu.org @ 2012-07-13 21:02 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53955

William J. Schmidt <wschmidt at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
         AssignedTo|unassigned at gcc dot       |wschmidt at gcc dot gnu.org
                   |gnu.org                     |

--- Comment #2 from William J. Schmidt <wschmidt at gcc dot gnu.org> 2012-07-13 21:01:53 UTC ---
Confirmed on rs6000 as well.  I'll have a look.  Thanks for the heads-up,
Steven!


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

* [Bug bootstrap/53955] [4.8 Regression] Missing prototypes in i386.c, bootstrap failure with --disable-build-poststage1-with-cxx
  2012-07-13 17:00 [Bug bootstrap/53955] New: [4.8 Regression] Missing prototypes in i386.c, bootstrap failure with --disable-build-poststage1-with-cxx tkoenig at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2012-07-13 21:02 ` wschmidt at gcc dot gnu.org
@ 2012-07-13 22:33 ` wschmidt at gcc dot gnu.org
  2012-07-13 22:34 ` wschmidt at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: wschmidt at gcc dot gnu.org @ 2012-07-13 22:33 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53955

--- Comment #3 from William J. Schmidt <wschmidt at gcc dot gnu.org> 2012-07-13 22:33:36 UTC ---
Author: wschmidt
Date: Fri Jul 13 22:33:31 2012
New Revision: 189473

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=189473
Log:
2012-07-13  Bill Schmidt  <wschmidt@linux.ibm.com>

    PR bootstrap/53955
    * config/spu/spu.c (spu_init_cost): Mark static.
    (spu_add_stmt_cost): Likewise.
    (spu_finish_cost): Likewise.
    (spu_destroy_cost_data): Likewise.
    * config/i386/i386.c (ix86_init_cost): Mark static.
    (ix86_add_stmt_cost): Likewise.
    (ix86_finish_cost): Likewise.
    (ix86_destroy_cost_data): Likewise.
    * config/rs6000/rs6000.c (rs6000_init_cost): Mark static.
    (rs6000_add_stmt_cost): Likewise.
    (rs6000_finish_cost): Likewise.
    (rs6000_destroy_cost_data): Likewise.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/i386/i386.c
    trunk/gcc/config/rs6000/rs6000.c
    trunk/gcc/config/spu/spu.c


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

* [Bug bootstrap/53955] [4.8 Regression] Missing prototypes in i386.c, bootstrap failure with --disable-build-poststage1-with-cxx
  2012-07-13 17:00 [Bug bootstrap/53955] New: [4.8 Regression] Missing prototypes in i386.c, bootstrap failure with --disable-build-poststage1-with-cxx tkoenig at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2012-07-13 22:33 ` wschmidt at gcc dot gnu.org
@ 2012-07-13 22:34 ` wschmidt at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: wschmidt at gcc dot gnu.org @ 2012-07-13 22:34 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53955

William J. Schmidt <wschmidt at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #4 from William J. Schmidt <wschmidt at gcc dot gnu.org> 2012-07-13 22:34:34 UTC ---
Fixed.


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

end of thread, other threads:[~2012-07-13 22:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-13 17:00 [Bug bootstrap/53955] New: [4.8 Regression] Missing prototypes in i386.c, bootstrap failure with --disable-build-poststage1-with-cxx tkoenig at gcc dot gnu.org
2012-07-13 17:01 ` [Bug bootstrap/53955] " tkoenig at gcc dot gnu.org
2012-07-13 17:05 ` steven at gcc dot gnu.org
2012-07-13 21:02 ` wschmidt at gcc dot gnu.org
2012-07-13 22:33 ` wschmidt at gcc dot gnu.org
2012-07-13 22:34 ` wschmidt 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).