public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/105229] New: [11/12 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111
@ 2022-04-11 16:55 gscfq@t-online.de
  2022-04-11 17:10 ` [Bug c++/105229] " mpolacek at gcc dot gnu.org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: gscfq@t-online.de @ 2022-04-11 16:55 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 105229
           Summary: [11/12 Regression] ICE in lookup_template_class_1, at
                    cp/pt.cc:10111
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gscfq@t-online.de
  Target Milestone: ---

Started between 20200503 and 20200510 :


$ cat z1.cc
template <typename> void bar ()
{
  [] <int> {}.operator () <> ();
}
void foo ()
{
  bar<int> ();
}


$ g++-12-20220410 -c z1.cc
z1.cc: In instantiation of 'void bar() [with <template-parameter-1-1> = int]':
z1.cc:7:12:   required from here
z1.cc:3:28: internal compiler error: in lookup_template_class_1, at
cp/pt.cc:10111
    3 |   [] <int> {}.operator () <> ();
      |   ~~~~~~~~~~~~~~~~~~~~~~~~~^
0x990981 lookup_template_class_1
        ../../gcc/cp/pt.cc:10111
0x990981 lookup_template_class(tree_node*, tree_node*, tree_node*, tree_node*,
int, int)
        ../../gcc/cp/pt.cc:10350
0x990cb2 tsubst_aggr_type
        ../../gcc/cp/pt.cc:13738
0x97a962 tsubst(tree_node*, tree_node*, int, tree_node*)
        ../../gcc/cp/pt.cc:15649
0x9a717b tsubst_baselink
        ../../gcc/cp/pt.cc:16453
0x976d2b tsubst_copy_and_build(tree_node*, tree_node*, int, tree_node*, bool,
bool)
        ../../gcc/cp/pt.cc:21028
0x975385 tsubst_copy_and_build(tree_node*, tree_node*, int, tree_node*, bool,
bool)
        ../../gcc/cp/pt.cc:20658
0x99b274 tsubst_expr(tree_node*, tree_node*, int, tree_node*, bool)
        ../../gcc/cp/pt.cc:19473
0x99918d tsubst_expr(tree_node*, tree_node*, int, tree_node*, bool)
        ../../gcc/cp/pt.cc:18486
0x999b9f tsubst_expr(tree_node*, tree_node*, int, tree_node*, bool)
        ../../gcc/cp/pt.cc:18458
0x99b233 tsubst_expr(tree_node*, tree_node*, int, tree_node*, bool)
        ../../gcc/cp/pt.cc:18815
0x97f679 tsubst_expr(tree_node*, tree_node*, int, tree_node*, bool)
        ../../gcc/cp/pt.cc:18444
0x97f679 instantiate_body
        ../../gcc/cp/pt.cc:26393
0x980da7 instantiate_decl(tree_node*, bool, bool)
        ../../gcc/cp/pt.cc:26685
0x9c780b instantiate_pending_templates(int)
        ../../gcc/cp/pt.cc:26764
0x8281e6 c_parse_final_cleanups()
        ../../gcc/cp/decl2.cc:5113

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

* [Bug c++/105229] [11/12 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111
  2022-04-11 16:55 [Bug c++/105229] New: [11/12 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111 gscfq@t-online.de
@ 2022-04-11 17:10 ` mpolacek at gcc dot gnu.org
  2022-04-12  7:43 ` rguenth at gcc dot gnu.org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2022-04-11 17:10 UTC (permalink / raw)
  To: gcc-bugs

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

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
                 CC|                            |mpolacek at gcc dot gnu.org
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2022-04-11
   Target Milestone|---                         |11.3

--- Comment #1 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Confirmed.  Started with r11-86-gef3479afc5ab41

commit ef3479afc5ab415f00a53fc6f6a990df7f6a0747
Author: Marek Polacek <polacek@redhat.com>
Date:   Tue Apr 28 22:30:44 2020 -0400

    c++: Member template function lookup failure [PR94799]

which changed

$ ./cc1plus.r11-85 -quiet ~/105229.C -std=c++2a
/home/mpolacek/105229.C: In function ‘void bar()’:
/home/mpolacek/105229.C:3:12: error: expected ‘(’ before ‘{’ token
    3 |   [] <int> {}.operator () <> ();
      |            ^
      |            (
/home/mpolacek/105229.C:3:28: error: expected primary-expression before ‘>’
token
    3 |   [] <int> {}.operator () <> ();
      |                            ^
/home/mpolacek/105229.C:3:31: error: expected primary-expression before ‘)’
token
    3 |   [] <int> {}.operator () <> ();
      |                               ^

to

$ ./cc1plus.r11-86 -quiet ~/105229.C -std=c++2a
/home/mpolacek/105229.C: In function ‘void bar()’:
/home/mpolacek/105229.C:3:12: error: expected ‘(’ before ‘{’ token
    3 |   [] <int> {}.operator () <> ();
      |            ^
      |            (
/home/mpolacek/105229.C: In instantiation of ‘void bar() [with
<template-parameter-1-1> = int]’:
/home/mpolacek/105229.C:7:13:   required from here
/home/mpolacek/105229.C:3:28: internal compiler error: in
lookup_template_class_1, at cp/pt.c:9891
    3 |   [] <int> {}.operator () <> ();
      |   ~~~~~~~~~~~~~~~~~~~~~~~~~^
unrecognized DWARF version in .debug_info at 6
0xbc18c9 lookup_template_class_1
        ../../gcc/cp/pt.c:9891
0xbc3176 lookup_template_class(tree_node*, tree_node*, tree_node*, tree_node*,
int, int)
        ../../gcc/cp/pt.c:10114
0xbd10d0 tsubst_aggr_type
        ../../gcc/cp/pt.c:13382
0xbdd578 tsubst(tree_node*, tree_node*, int, tree_node*)
        ../../gcc/cp/pt.c:15169
0xbe0fe1 tsubst_baselink
        ../../gcc/cp/pt.c:16001
0xbf8c92 tsubst_copy_and_build(tree_node*, tree_node*, int, tree_node*, bool,
bool)
        ../../gcc/cp/pt.c:20188
0xbf638e tsubst_copy_and_build(tree_node*, tree_node*, int, tree_node*, bool,
bool)
        ../../gcc/cp/pt.c:19730
0xbf1cd2 tsubst_expr(tree_node*, tree_node*, int, tree_node*, bool)
        ../../gcc/cp/pt.c:18753
0xbea656 tsubst_expr(tree_node*, tree_node*, int, tree_node*, bool)
        ../../gcc/cp/pt.c:17865
0xbea3e8 tsubst_expr(tree_node*, tree_node*, int, tree_node*, bool)
        ../../gcc/cp/pt.c:17835
0xbed092 tsubst_expr(tree_node*, tree_node*, int, tree_node*, bool)
        ../../gcc/cp/pt.c:18154
0xc11905 instantiate_decl(tree_node*, bool, bool)
        ../../gcc/cp/pt.c:25714
0xc122c4 instantiate_pending_templates(int)
        ../../gcc/cp/pt.c:25830

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

* [Bug c++/105229] [11/12 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111
  2022-04-11 16:55 [Bug c++/105229] New: [11/12 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111 gscfq@t-online.de
  2022-04-11 17:10 ` [Bug c++/105229] " mpolacek at gcc dot gnu.org
@ 2022-04-12  7:43 ` rguenth at gcc dot gnu.org
  2022-04-21  7:51 ` rguenth at gcc dot gnu.org
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-04-12  7:43 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P2

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

* [Bug c++/105229] [11/12 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111
  2022-04-11 16:55 [Bug c++/105229] New: [11/12 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111 gscfq@t-online.de
  2022-04-11 17:10 ` [Bug c++/105229] " mpolacek at gcc dot gnu.org
  2022-04-12  7:43 ` rguenth at gcc dot gnu.org
@ 2022-04-21  7:51 ` rguenth at gcc dot gnu.org
  2023-03-23 19:00 ` [Bug c++/105229] [11/12/13 " pinskia at gcc dot gnu.org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-04-21  7:51 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|11.3                        |11.4

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 11.3 is being released, retargeting bugs to GCC 11.4.

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

* [Bug c++/105229] [11/12/13 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111
  2022-04-11 16:55 [Bug c++/105229] New: [11/12 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111 gscfq@t-online.de
                   ` (2 preceding siblings ...)
  2022-04-21  7:51 ` rguenth at gcc dot gnu.org
@ 2023-03-23 19:00 ` pinskia at gcc dot gnu.org
  2023-05-29 10:06 ` [Bug c++/105229] [11/12/13/14 " jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-03-23 19:00 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |needs-bisection
      Known to fail|                            |12.1.0
      Known to work|                            |12.2.0, 13.0

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Seems fixed for GCC 12.2.0 and the trunk.

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

* [Bug c++/105229] [11/12/13/14 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111
  2022-04-11 16:55 [Bug c++/105229] New: [11/12 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111 gscfq@t-online.de
                   ` (3 preceding siblings ...)
  2023-03-23 19:00 ` [Bug c++/105229] [11/12/13 " pinskia at gcc dot gnu.org
@ 2023-05-29 10:06 ` jakub at gcc dot gnu.org
  2024-04-30 14:50 ` [Bug c++/105229] [11/12/13/14/15 " simartin at gcc dot gnu.org
  2024-05-06 18:59 ` simartin at gcc dot gnu.org
  6 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu.org @ 2023-05-29 10:06 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|11.4                        |11.5

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 11.4 is being released, retargeting bugs to GCC 11.5.

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

* [Bug c++/105229] [11/12/13/14/15 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111
  2022-04-11 16:55 [Bug c++/105229] New: [11/12 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111 gscfq@t-online.de
                   ` (4 preceding siblings ...)
  2023-05-29 10:06 ` [Bug c++/105229] [11/12/13/14 " jakub at gcc dot gnu.org
@ 2024-04-30 14:50 ` simartin at gcc dot gnu.org
  2024-05-06 18:59 ` simartin at gcc dot gnu.org
  6 siblings, 0 replies; 8+ messages in thread
From: simartin at gcc dot gnu.org @ 2024-04-30 14:50 UTC (permalink / raw)
  To: gcc-bugs

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

Simon Martin <simartin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED

--- Comment #5 from Simon Martin <simartin at gcc dot gnu.org> ---
It does not seem to ICE anymore with trunk. Will double check and if so, submit
a new testcase.

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

* [Bug c++/105229] [11/12/13/14/15 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111
  2022-04-11 16:55 [Bug c++/105229] New: [11/12 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111 gscfq@t-online.de
                   ` (5 preceding siblings ...)
  2024-04-30 14:50 ` [Bug c++/105229] [11/12/13/14/15 " simartin at gcc dot gnu.org
@ 2024-05-06 18:59 ` simartin at gcc dot gnu.org
  6 siblings, 0 replies; 8+ messages in thread
From: simartin at gcc dot gnu.org @ 2024-05-06 18:59 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from Simon Martin <simartin at gcc dot gnu.org> ---
The testcase ICEs with 11.3 (https://godbolt.org/z/qoYqK8zj9) but not 11.4
(https://godbolt.org/z/K8q6qYPba)

Will check if we need to add a new test case of it's already covered.

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

end of thread, other threads:[~2024-05-06 18:59 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-11 16:55 [Bug c++/105229] New: [11/12 Regression] ICE in lookup_template_class_1, at cp/pt.cc:10111 gscfq@t-online.de
2022-04-11 17:10 ` [Bug c++/105229] " mpolacek at gcc dot gnu.org
2022-04-12  7:43 ` rguenth at gcc dot gnu.org
2022-04-21  7:51 ` rguenth at gcc dot gnu.org
2023-03-23 19:00 ` [Bug c++/105229] [11/12/13 " pinskia at gcc dot gnu.org
2023-05-29 10:06 ` [Bug c++/105229] [11/12/13/14 " jakub at gcc dot gnu.org
2024-04-30 14:50 ` [Bug c++/105229] [11/12/13/14/15 " simartin at gcc dot gnu.org
2024-05-06 18:59 ` simartin 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).