public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/102709] New: ICE: in build_function_type, at tree.c:7304
@ 2021-10-12 15:42 hewillk at gmail dot com
  2021-10-12 15:52 ` [Bug c++/102709] " hewillk at gmail dot com
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: hewillk at gmail dot com @ 2021-10-12 15:42 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 102709
           Summary: ICE: in build_function_type, at tree.c:7304
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hewillk at gmail dot com
  Target Milestone: ---

12 Regression:

template<class... T>
struct S { S(T) {} };

int main() {
  S([]{});
}

https://godbolt.org/z/rM5Eo1rhh

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

* [Bug c++/102709] ICE: in build_function_type, at tree.c:7304
  2021-10-12 15:42 [Bug c++/102709] New: ICE: in build_function_type, at tree.c:7304 hewillk at gmail dot com
@ 2021-10-12 15:52 ` hewillk at gmail dot com
  2021-10-12 16:13 ` [Bug c++/102709] [11/12 Regression] " pinskia at gcc dot gnu.org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: hewillk at gmail dot com @ 2021-10-12 15:52 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from 康桓瑋 <hewillk at gmail dot com> ---
*** Bug 102710 has been marked as a duplicate of this bug. ***

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

* [Bug c++/102709] [11/12 Regression] ICE: in build_function_type, at tree.c:7304
  2021-10-12 15:42 [Bug c++/102709] New: ICE: in build_function_type, at tree.c:7304 hewillk at gmail dot com
  2021-10-12 15:52 ` [Bug c++/102709] " hewillk at gmail dot com
@ 2021-10-12 16:13 ` pinskia at gcc dot gnu.org
  2021-10-13  6:25 ` [Bug c++/102709] [11/12 Regression] ICE: in build_function_type with parameter packs not expanded in constructor while doing auto deduction rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-10-12 16:13 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
      Known to work|                            |10.3.0
           Severity|normal                      |trivial
            Summary|ICE: in                     |[11/12 Regression] ICE: in
                   |build_function_type, at     |build_function_type, at
                   |tree.c:7304                 |tree.c:7304
           Keywords|                            |error-recovery,
                   |                            |ice-on-invalid-code
      Known to fail|                            |11.1.0
             Status|UNCONFIRMED                 |NEW
   Target Milestone|---                         |11.3
   Last reconfirmed|                            |2021-10-12

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
>12 Regression:
Not really:
<source>:6: confused by earlier errors, bailing out
Well it is a regression from GCC 10 though.

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

* [Bug c++/102709] [11/12 Regression] ICE: in build_function_type with parameter packs not expanded in constructor while doing auto deduction
  2021-10-12 15:42 [Bug c++/102709] New: ICE: in build_function_type, at tree.c:7304 hewillk at gmail dot com
  2021-10-12 15:52 ` [Bug c++/102709] " hewillk at gmail dot com
  2021-10-12 16:13 ` [Bug c++/102709] [11/12 Regression] " pinskia at gcc dot gnu.org
@ 2021-10-13  6:25 ` rguenth at gcc dot gnu.org
  2021-10-13 12:07 ` [Bug c++/102709] [11/12 Regression] ICE: in build_function_type with parameter packs not expanded in constructor while doing auto deduction since r11-2748-gb871301f09be7061 marxin at gcc dot gnu.org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-10-13  6:25 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4

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

* [Bug c++/102709] [11/12 Regression] ICE: in build_function_type with parameter packs not expanded in constructor while doing auto deduction since r11-2748-gb871301f09be7061
  2021-10-12 15:42 [Bug c++/102709] New: ICE: in build_function_type, at tree.c:7304 hewillk at gmail dot com
                   ` (2 preceding siblings ...)
  2021-10-13  6:25 ` [Bug c++/102709] [11/12 Regression] ICE: in build_function_type with parameter packs not expanded in constructor while doing auto deduction rguenth at gcc dot gnu.org
@ 2021-10-13 12:07 ` marxin at gcc dot gnu.org
  2022-04-21  7:50 ` rguenth at gcc dot gnu.org
  2023-05-29 10:05 ` [Bug c++/102709] [11/12/13/14 " jakub at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: marxin at gcc dot gnu.org @ 2021-10-13 12:07 UTC (permalink / raw)
  To: gcc-bugs

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

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[11/12 Regression] ICE: in  |[11/12 Regression] ICE: in
                   |build_function_type with    |build_function_type with
                   |parameter packs not         |parameter packs not
                   |expanded in constructor     |expanded in constructor
                   |while doing auto deduction  |while doing auto deduction
                   |                            |since
                   |                            |r11-2748-gb871301f09be7061
                 CC|                            |jason at gcc dot gnu.org,
                   |                            |marxin at gcc dot gnu.org

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
Started with r11-2748-gb871301f09be7061.

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

* [Bug c++/102709] [11/12 Regression] ICE: in build_function_type with parameter packs not expanded in constructor while doing auto deduction since r11-2748-gb871301f09be7061
  2021-10-12 15:42 [Bug c++/102709] New: ICE: in build_function_type, at tree.c:7304 hewillk at gmail dot com
                   ` (3 preceding siblings ...)
  2021-10-13 12:07 ` [Bug c++/102709] [11/12 Regression] ICE: in build_function_type with parameter packs not expanded in constructor while doing auto deduction since r11-2748-gb871301f09be7061 marxin at gcc dot gnu.org
@ 2022-04-21  7:50 ` rguenth at gcc dot gnu.org
  2023-05-29 10:05 ` [Bug c++/102709] [11/12/13/14 " jakub at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-04-21  7:50 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #4 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] 7+ messages in thread

* [Bug c++/102709] [11/12/13/14 Regression] ICE: in build_function_type with parameter packs not expanded in constructor while doing auto deduction since r11-2748-gb871301f09be7061
  2021-10-12 15:42 [Bug c++/102709] New: ICE: in build_function_type, at tree.c:7304 hewillk at gmail dot com
                   ` (4 preceding siblings ...)
  2022-04-21  7:50 ` rguenth at gcc dot gnu.org
@ 2023-05-29 10:05 ` jakub at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: jakub at gcc dot gnu.org @ 2023-05-29 10:05 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #5 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] 7+ messages in thread

end of thread, other threads:[~2023-05-29 10:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-12 15:42 [Bug c++/102709] New: ICE: in build_function_type, at tree.c:7304 hewillk at gmail dot com
2021-10-12 15:52 ` [Bug c++/102709] " hewillk at gmail dot com
2021-10-12 16:13 ` [Bug c++/102709] [11/12 Regression] " pinskia at gcc dot gnu.org
2021-10-13  6:25 ` [Bug c++/102709] [11/12 Regression] ICE: in build_function_type with parameter packs not expanded in constructor while doing auto deduction rguenth at gcc dot gnu.org
2021-10-13 12:07 ` [Bug c++/102709] [11/12 Regression] ICE: in build_function_type with parameter packs not expanded in constructor while doing auto deduction since r11-2748-gb871301f09be7061 marxin at gcc dot gnu.org
2022-04-21  7:50 ` rguenth at gcc dot gnu.org
2023-05-29 10:05 ` [Bug c++/102709] [11/12/13/14 " jakub 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).