public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/98259] New: [11 Regression] error: 'void verify_insn_chain()' causes a section type conflict with 'void init_rtl_bb_info(basic_block)'
@ 2020-12-13  6:57 doko at debian dot org
  2020-12-14 10:44 ` [Bug target/98259] " doko at debian dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: doko at debian dot org @ 2020-12-13  6:57 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 98259
           Summary: [11 Regression] error: 'void verify_insn_chain()'
                    causes a section type conflict with 'void
                    init_rtl_bb_info(basic_block)'
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: doko at debian dot org
  Target Milestone: ---

seen with 20201212 with a profiled bootstrap on arm-linux-gnueabihf:

../../src/gcc/symtab.c: In static member function 'static void
symtab_node::verify_symtab_nodes()':
../../src/gcc/symtab.c:1349:1: error: 'void symtab_node::verify()' causes a
section type conflict with 'void symbol_table::sym
tab_initialize_asm_name_hash()'
 1349 | symtab_node::verify (void)
      | ^~~~~~~~~~~
../../src/gcc/symtab.c:259:1: note: 'void
symbol_table::symtab_initialize_asm_name_hash()' was declared here
  259 | symbol_table::symtab_initialize_asm_name_hash (void)
      | ^~~~~~~~~~~~
make[5]: *** [Makefile:1123: symtab.o] Error 1
make[5]: *** Waiting for unfinished jobs....
../../src/gcc/cfgrtl.c: In function 'void cfg_layout_finalize()':
../../src/gcc/cfgrtl.c:4057:1: error: 'void verify_insn_chain()' causes a
section type conflict with 'void init_rtl_bb_info(basic_block)'
 4057 | verify_insn_chain (void)
      | ^~~~~~~~~~~~~~~~~
../../src/gcc/cfgrtl.c:5134:1: note: 'void init_rtl_bb_info(basic_block)' was
declared here
 5134 | init_rtl_bb_info (basic_block bb)
      | ^~~~~~~~~~~~~~~~
make[5]: *** [Makefile:1123: cfgrtl.o] Error 1

gcc is configured with:

         --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++
         --with-gcc-major-version-only
         --program-prefix=
         --enable-shared
         --enable-linker-build-id
         --disable-nls
         --enable-bootstrap
         --enable-clocale=gnu
         --enable-libstdcxx-debug
         --enable-libstdcxx-time=yes
         --with-default-libstdcxx-abi=new
         --enable-gnu-unique-object
         --disable-libitm
         --disable-libquadmath
         --disable-libquadmath-support
         --enable-plugin
         --with-system-zlib
         --enable-libphobos-checking=release
         --with-target-system-zlib=auto
         --enable-objc-gc=auto
         --enable-multiarch
         --enable-multilib
         --disable-sjlj-exceptions
         --with-arch=armv7-a
         --with-fpu=vfpv3-d16
         --with-float=hard
         --with-mode=thumb
         --disable-werror
         --enable-multilib
         --enable-checking=yes
         --build=arm-linux-gnueabihf
         --host=arm-linux-gnueabihf
         --target=arm-linux-gnueabihf

build target: profiledbootstrap-lean

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

* [Bug target/98259] [11 Regression] error: 'void verify_insn_chain()' causes a section type conflict with 'void init_rtl_bb_info(basic_block)'
  2020-12-13  6:57 [Bug target/98259] New: [11 Regression] error: 'void verify_insn_chain()' causes a section type conflict with 'void init_rtl_bb_info(basic_block)' doko at debian dot org
@ 2020-12-14 10:44 ` doko at debian dot org
  2020-12-14 10:46 ` ktkachov at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: doko at debian dot org @ 2020-12-14 10:44 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Matthias Klose <doko at debian dot org> ---
a normal bootstrap works

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

* [Bug target/98259] [11 Regression] error: 'void verify_insn_chain()' causes a section type conflict with 'void init_rtl_bb_info(basic_block)'
  2020-12-13  6:57 [Bug target/98259] New: [11 Regression] error: 'void verify_insn_chain()' causes a section type conflict with 'void init_rtl_bb_info(basic_block)' doko at debian dot org
  2020-12-14 10:44 ` [Bug target/98259] " doko at debian dot org
@ 2020-12-14 10:46 ` ktkachov at gcc dot gnu.org
  2021-01-04 14:27 ` rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: ktkachov at gcc dot gnu.org @ 2020-12-14 10:46 UTC (permalink / raw)
  To: gcc-bugs

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

ktkachov at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ktkachov at gcc dot gnu.org

--- Comment #2 from ktkachov at gcc dot gnu.org ---
May be a dup of PR98146?

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

* [Bug target/98259] [11 Regression] error: 'void verify_insn_chain()' causes a section type conflict with 'void init_rtl_bb_info(basic_block)'
  2020-12-13  6:57 [Bug target/98259] New: [11 Regression] error: 'void verify_insn_chain()' causes a section type conflict with 'void init_rtl_bb_info(basic_block)' doko at debian dot org
  2020-12-14 10:44 ` [Bug target/98259] " doko at debian dot org
  2020-12-14 10:46 ` ktkachov at gcc dot gnu.org
@ 2021-01-04 14:27 ` rguenth at gcc dot gnu.org
  2021-01-14 11:06 ` rguenth at gcc dot gnu.org
  2021-01-14 11:08 ` doko at debian dot org
  4 siblings, 0 replies; 6+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-01-04 14:27 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |11.0
           Keywords|                            |build

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
which would suggest this is fixed?

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

* [Bug target/98259] [11 Regression] error: 'void verify_insn_chain()' causes a section type conflict with 'void init_rtl_bb_info(basic_block)'
  2020-12-13  6:57 [Bug target/98259] New: [11 Regression] error: 'void verify_insn_chain()' causes a section type conflict with 'void init_rtl_bb_info(basic_block)' doko at debian dot org
                   ` (2 preceding siblings ...)
  2021-01-04 14:27 ` rguenth at gcc dot gnu.org
@ 2021-01-14 11:06 ` rguenth at gcc dot gnu.org
  2021-01-14 11:08 ` doko at debian dot org
  4 siblings, 0 replies; 6+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-01-14 11:06 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|                            |2021-01-14
             Status|UNCONFIRMED                 |WAITING
     Ever confirmed|0                           |1

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
So does it meanwhile work?

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

* [Bug target/98259] [11 Regression] error: 'void verify_insn_chain()' causes a section type conflict with 'void init_rtl_bb_info(basic_block)'
  2020-12-13  6:57 [Bug target/98259] New: [11 Regression] error: 'void verify_insn_chain()' causes a section type conflict with 'void init_rtl_bb_info(basic_block)' doko at debian dot org
                   ` (3 preceding siblings ...)
  2021-01-14 11:06 ` rguenth at gcc dot gnu.org
@ 2021-01-14 11:08 ` doko at debian dot org
  4 siblings, 0 replies; 6+ messages in thread
From: doko at debian dot org @ 2021-01-14 11:08 UTC (permalink / raw)
  To: gcc-bugs

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

Matthias Klose <doko at debian dot org> changed:

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

--- Comment #5 from Matthias Klose <doko at debian dot org> ---
yes, that builds now.

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

end of thread, other threads:[~2021-01-14 11:08 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-13  6:57 [Bug target/98259] New: [11 Regression] error: 'void verify_insn_chain()' causes a section type conflict with 'void init_rtl_bb_info(basic_block)' doko at debian dot org
2020-12-14 10:44 ` [Bug target/98259] " doko at debian dot org
2020-12-14 10:46 ` ktkachov at gcc dot gnu.org
2021-01-04 14:27 ` rguenth at gcc dot gnu.org
2021-01-14 11:06 ` rguenth at gcc dot gnu.org
2021-01-14 11:08 ` doko at debian dot 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).