public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/99803] New: internal compiler error: in make_typename_type,  at cp/decl.c:4057
@ 2021-03-28 17:14 hewillk at gmail dot com
  2021-03-29 17:50 ` [Bug c++/99803] [9/10/11 Regression] ICE: " mpolacek at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: hewillk at gmail dot com @ 2021-03-28 17:14 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 99803
           Summary: internal compiler error: in make_typename_type, at
                    cp/decl.c:4057
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hewillk at gmail dot com
  Target Milestone: ---

https://godbolt.org/z/4Yfnfzdhe

struct A {  A(auto); };
A(unsigned) -> A:: template A<int>;

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

* [Bug c++/99803] [9/10/11 Regression] ICE: in make_typename_type, at cp/decl.c:4057
  2021-03-28 17:14 [Bug c++/99803] New: internal compiler error: in make_typename_type, at cp/decl.c:4057 hewillk at gmail dot com
@ 2021-03-29 17:50 ` mpolacek at gcc dot gnu.org
  2021-04-16 15:12 ` cvs-commit at gcc dot gnu.org
  2021-04-16 16:23 ` mpolacek at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2021-03-29 17:50 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |9.4
                 CC|                            |mpolacek at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |mpolacek at gcc dot gnu.org
             Status|UNCONFIRMED                 |ASSIGNED
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2021-03-29
           Priority|P3                          |P2
            Summary|ICE: in make_typename_type, |[9/10/11 Regression] ICE:
                   |at cp/decl.c:4057           |in make_typename_type, at
                   |                            |cp/decl.c:4057

--- Comment #1 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
And this one is mine too -- r266710.

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

* [Bug c++/99803] [9/10/11 Regression] ICE: in make_typename_type, at cp/decl.c:4057
  2021-03-28 17:14 [Bug c++/99803] New: internal compiler error: in make_typename_type, at cp/decl.c:4057 hewillk at gmail dot com
  2021-03-29 17:50 ` [Bug c++/99803] [9/10/11 Regression] ICE: " mpolacek at gcc dot gnu.org
@ 2021-04-16 15:12 ` cvs-commit at gcc dot gnu.org
  2021-04-16 16:23 ` mpolacek at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-04-16 15:12 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Marek Polacek <mpolacek@gcc.gnu.org>:

https://gcc.gnu.org/g:70f2bff43aadd2fcc0595bf9f4bab72647529655

commit r11-8220-g70f2bff43aadd2fcc0595bf9f4bab72647529655
Author: Marek Polacek <polacek@redhat.com>
Date:   Wed Apr 14 17:57:15 2021 -0400

    c++: ICE with bogus late return type [PR99803]

    Here we ICE when compiling this code in C++20, because we're trying to
    slam a 'typename' after the ->.  The cp_parser_template_id call just
    before the spot I'm changing parsed A::template A<int> as a BASELINK
    that contains a constructor, but make_typename_type crashes on that.

    This patch makes make_typename_type more robust instead of checking
    for is_overloaded_fn prior calling it.

    gcc/cp/ChangeLog:

            PR c++/99803
            * decl.c (make_typename_type): Give an error and return when
            name is is_overloaded_fn.
            * parser.c (cp_parser_class_name): Don't check is_overloaded_fn
            before calling make_typename_type.

    gcc/testsuite/ChangeLog:

            PR c++/99803
            * g++.dg/cpp2a/typename14.C: Don't expect particular error
            messages.
            * g++.dg/cpp2a/typename19.C: New test.

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

* [Bug c++/99803] [9/10/11 Regression] ICE: in make_typename_type, at cp/decl.c:4057
  2021-03-28 17:14 [Bug c++/99803] New: internal compiler error: in make_typename_type, at cp/decl.c:4057 hewillk at gmail dot com
  2021-03-29 17:50 ` [Bug c++/99803] [9/10/11 Regression] ICE: " mpolacek at gcc dot gnu.org
  2021-04-16 15:12 ` cvs-commit at gcc dot gnu.org
@ 2021-04-16 16:23 ` mpolacek at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2021-04-16 16:23 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #3 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Fixed.

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

end of thread, other threads:[~2021-04-16 16:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-28 17:14 [Bug c++/99803] New: internal compiler error: in make_typename_type, at cp/decl.c:4057 hewillk at gmail dot com
2021-03-29 17:50 ` [Bug c++/99803] [9/10/11 Regression] ICE: " mpolacek at gcc dot gnu.org
2021-04-16 15:12 ` cvs-commit at gcc dot gnu.org
2021-04-16 16:23 ` mpolacek 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).