public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/100829] New: ICE with type that can't be determined
@ 2021-05-30  1:22 llvm at rifkin dot dev
  2021-05-31  9:02 ` [Bug c++/100829] [9/10/11/12 Regression] ICE with type that can't be determined since r8-6321-gd78201d30c7c5a8f marxin at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: llvm at rifkin dot dev @ 2021-05-30  1:22 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 100829
           Summary: ICE with type that can't be determined
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: llvm at rifkin dot dev
  Target Milestone: ---

Following code causes an ICE:

template<auto a, auto b>
auto e = e<a, b>;
template<auto a>
auto e<a, 0> = 0;

auto r = e<e,0>;


This goes back to GCC 10.

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

* [Bug c++/100829] [9/10/11/12 Regression] ICE with type that can't be determined since r8-6321-gd78201d30c7c5a8f
  2021-05-30  1:22 [Bug c++/100829] New: ICE with type that can't be determined llvm at rifkin dot dev
@ 2021-05-31  9:02 ` marxin at gcc dot gnu.org
  2021-07-06  6:45 ` rguenth at gcc dot gnu.org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: marxin at gcc dot gnu.org @ 2021-05-31  9:02 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2021-05-31
                 CC|                            |jason at gcc dot gnu.org,
                   |                            |marxin at gcc dot gnu.org
     Ever confirmed|0                           |1
            Summary|ICE with type that can't be |[9/10/11/12 Regression] ICE
                   |determined                  |with type that can't be
                   |                            |determined since
                   |                            |r8-6321-gd78201d30c7c5a8f

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Started with r8-6321-gd78201d30c7c5a8f.

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

* [Bug c++/100829] [9/10/11/12 Regression] ICE with type that can't be determined since r8-6321-gd78201d30c7c5a8f
  2021-05-30  1:22 [Bug c++/100829] New: ICE with type that can't be determined llvm at rifkin dot dev
  2021-05-31  9:02 ` [Bug c++/100829] [9/10/11/12 Regression] ICE with type that can't be determined since r8-6321-gd78201d30c7c5a8f marxin at gcc dot gnu.org
@ 2021-07-06  6:45 ` rguenth at gcc dot gnu.org
  2022-01-20 12:59 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-07-06  6:45 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |9.5

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

* [Bug c++/100829] [9/10/11/12 Regression] ICE with type that can't be determined since r8-6321-gd78201d30c7c5a8f
  2021-05-30  1:22 [Bug c++/100829] New: ICE with type that can't be determined llvm at rifkin dot dev
  2021-05-31  9:02 ` [Bug c++/100829] [9/10/11/12 Regression] ICE with type that can't be determined since r8-6321-gd78201d30c7c5a8f marxin at gcc dot gnu.org
  2021-07-06  6:45 ` rguenth at gcc dot gnu.org
@ 2022-01-20 12:59 ` rguenth at gcc dot gnu.org
  2022-05-27  9:45 ` [Bug c++/100829] [10/11/12/13 " rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-01-20 12:59 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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

* [Bug c++/100829] [10/11/12/13 Regression] ICE with type that can't be determined since r8-6321-gd78201d30c7c5a8f
  2021-05-30  1:22 [Bug c++/100829] New: ICE with type that can't be determined llvm at rifkin dot dev
                   ` (2 preceding siblings ...)
  2022-01-20 12:59 ` rguenth at gcc dot gnu.org
@ 2022-05-27  9:45 ` rguenth at gcc dot gnu.org
  2022-06-28 10:45 ` jakub at gcc dot gnu.org
  2023-07-07 10:40 ` [Bug c++/100829] [11/12/13/14 " rguenth at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-05-27  9:45 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|9.5                         |10.4

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 9 branch is being closed

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

* [Bug c++/100829] [10/11/12/13 Regression] ICE with type that can't be determined since r8-6321-gd78201d30c7c5a8f
  2021-05-30  1:22 [Bug c++/100829] New: ICE with type that can't be determined llvm at rifkin dot dev
                   ` (3 preceding siblings ...)
  2022-05-27  9:45 ` [Bug c++/100829] [10/11/12/13 " rguenth at gcc dot gnu.org
@ 2022-06-28 10:45 ` jakub at gcc dot gnu.org
  2023-07-07 10:40 ` [Bug c++/100829] [11/12/13/14 " rguenth at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: jakub at gcc dot gnu.org @ 2022-06-28 10:45 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|10.4                        |10.5

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 10.4 is being released, retargeting bugs to GCC 10.5.

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

* [Bug c++/100829] [11/12/13/14 Regression] ICE with type that can't be determined since r8-6321-gd78201d30c7c5a8f
  2021-05-30  1:22 [Bug c++/100829] New: ICE with type that can't be determined llvm at rifkin dot dev
                   ` (4 preceding siblings ...)
  2022-06-28 10:45 ` jakub at gcc dot gnu.org
@ 2023-07-07 10:40 ` rguenth at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-07-07 10:40 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 10 branch is being closed.

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

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

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-30  1:22 [Bug c++/100829] New: ICE with type that can't be determined llvm at rifkin dot dev
2021-05-31  9:02 ` [Bug c++/100829] [9/10/11/12 Regression] ICE with type that can't be determined since r8-6321-gd78201d30c7c5a8f marxin at gcc dot gnu.org
2021-07-06  6:45 ` rguenth at gcc dot gnu.org
2022-01-20 12:59 ` rguenth at gcc dot gnu.org
2022-05-27  9:45 ` [Bug c++/100829] [10/11/12/13 " rguenth at gcc dot gnu.org
2022-06-28 10:45 ` jakub at gcc dot gnu.org
2023-07-07 10:40 ` [Bug c++/100829] [11/12/13/14 " rguenth 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).