public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/97165] New: Infinite error stream on invalid code
@ 2020-09-22 14:16 mpolacek at gcc dot gnu.org
  2020-09-22 14:17 ` [Bug c++/97165] [9/10/11 Regression] " mpolacek at gcc dot gnu.org
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2020-09-22 14:16 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 97165
           Summary: Infinite error stream on invalid code
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mpolacek at gcc dot gnu.org
  Target Milestone: ---

a<b<c<d<e<f<g

$ ./cc1plus -quiet q.C -std=c++20
q.C:1:13: error: ‘g’ was not declared in this scope
    1 | a<b<c<d<e<f<g
      |             ^
q.C:1:13: error: ‘g’ was not declared in this scope
q.C:1:13: error: ‘g’ was not declared in this scope
q.C:1:13: error: ‘g’ was not declared in this scope
q.C:1:13: error: ‘g’ was not declared in this scope
q.C:1:13: error: ‘g’ was not declared in this scope
q.C:1:13: error: ‘g’ was not declared in this scope
[...]

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

* [Bug c++/97165] [9/10/11 Regression] Infinite error stream on invalid code
  2020-09-22 14:16 [Bug c++/97165] New: Infinite error stream on invalid code mpolacek at gcc dot gnu.org
@ 2020-09-22 14:17 ` mpolacek at gcc dot gnu.org
  2020-09-22 14:17 ` mpolacek at gcc dot gnu.org
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2020-09-22 14:17 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |9.4
            Summary|Infinite error stream on    |[9/10/11 Regression]
                   |invalid code                |Infinite error stream on
                   |                            |invalid code
           Assignee|unassigned at gcc dot gnu.org      |mpolacek at gcc dot gnu.org
           Keywords|                            |compile-time-hog

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

* [Bug c++/97165] [9/10/11 Regression] Infinite error stream on invalid code
  2020-09-22 14:16 [Bug c++/97165] New: Infinite error stream on invalid code mpolacek at gcc dot gnu.org
  2020-09-22 14:17 ` [Bug c++/97165] [9/10/11 Regression] " mpolacek at gcc dot gnu.org
@ 2020-09-22 14:17 ` mpolacek at gcc dot gnu.org
  2020-09-22 15:50 ` mpolacek at gcc dot gnu.org
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2020-09-22 14:17 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|                            |2020-09-22
             Status|UNCONFIRMED                 |ASSIGNED
     Ever confirmed|0                           |1

--- Comment #1 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Started with r265734:

commit 5d9a0e3b99e31a2167f6b6ab2473feb58f7c77e8
Author: Marek Polacek <polacek@redhat.com>
Date:   Thu Nov 1 22:10:31 2018 +0000

    Implement P0846R0, ADL and function templates.

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

* [Bug c++/97165] [9/10/11 Regression] Infinite error stream on invalid code
  2020-09-22 14:16 [Bug c++/97165] New: Infinite error stream on invalid code mpolacek at gcc dot gnu.org
  2020-09-22 14:17 ` [Bug c++/97165] [9/10/11 Regression] " mpolacek at gcc dot gnu.org
  2020-09-22 14:17 ` mpolacek at gcc dot gnu.org
@ 2020-09-22 15:50 ` mpolacek at gcc dot gnu.org
  2020-10-12 11:49 ` rguenth at gcc dot gnu.org
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2020-09-22 15:50 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Similar case:

template<class T>
class p<p<p<p<p<p<p<

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

* [Bug c++/97165] [9/10/11 Regression] Infinite error stream on invalid code
  2020-09-22 14:16 [Bug c++/97165] New: Infinite error stream on invalid code mpolacek at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2020-09-22 15:50 ` mpolacek at gcc dot gnu.org
@ 2020-10-12 11:49 ` rguenth at gcc dot gnu.org
  2021-06-01  8:18 ` [Bug c++/97165] [9/10/11/12 " rguenth at gcc dot gnu.org
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: rguenth at gcc dot gnu.org @ 2020-10-12 11:49 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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

* [Bug c++/97165] [9/10/11/12 Regression] Infinite error stream on invalid code
  2020-09-22 14:16 [Bug c++/97165] New: Infinite error stream on invalid code mpolacek at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2020-10-12 11:49 ` rguenth at gcc dot gnu.org
@ 2021-06-01  8:18 ` rguenth at gcc dot gnu.org
  2022-04-13 19:41 ` mpolacek at gcc dot gnu.org
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-06-01  8:18 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 9.4 is being released, retargeting bugs to GCC 9.5.

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

* [Bug c++/97165] [9/10/11/12 Regression] Infinite error stream on invalid code
  2020-09-22 14:16 [Bug c++/97165] New: Infinite error stream on invalid code mpolacek at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2021-06-01  8:18 ` [Bug c++/97165] [9/10/11/12 " rguenth at gcc dot gnu.org
@ 2022-04-13 19:41 ` mpolacek at gcc dot gnu.org
  2022-05-27  9:43 ` [Bug c++/97165] [10/11/12/13 " rguenth at gcc dot gnu.org
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2022-04-13 19:41 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P2                          |P5

--- Comment #4 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
The code is complete gibberish, downgrading to P5.

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

* [Bug c++/97165] [10/11/12/13 Regression] Infinite error stream on invalid code
  2020-09-22 14:16 [Bug c++/97165] New: Infinite error stream on invalid code mpolacek at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2022-04-13 19:41 ` mpolacek at gcc dot gnu.org
@ 2022-05-27  9:43 ` rguenth at gcc dot gnu.org
  2022-06-28 10:42 ` jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-05-27  9:43 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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

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

* [Bug c++/97165] [10/11/12/13 Regression] Infinite error stream on invalid code
  2020-09-22 14:16 [Bug c++/97165] New: Infinite error stream on invalid code mpolacek at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2022-05-27  9:43 ` [Bug c++/97165] [10/11/12/13 " rguenth at gcc dot gnu.org
@ 2022-06-28 10:42 ` jakub at gcc dot gnu.org
  2022-08-08  0:05 ` pinskia at gcc dot gnu.org
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: jakub at gcc dot gnu.org @ 2022-06-28 10:42 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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

* [Bug c++/97165] [10/11/12/13 Regression] Infinite error stream on invalid code
  2020-09-22 14:16 [Bug c++/97165] New: Infinite error stream on invalid code mpolacek at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2022-06-28 10:42 ` jakub at gcc dot gnu.org
@ 2022-08-08  0:05 ` pinskia at gcc dot gnu.org
  2022-08-08  0:11 ` f.heckenbach@fh-soft.de
  2023-07-07 10:38 ` [Bug c++/97165] [11/12/13/14 " rguenth at gcc dot gnu.org
  10 siblings, 0 replies; 12+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-08-08  0:05 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |f.heckenbach@fh-soft.de

--- Comment #7 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 106549 has been marked as a duplicate of this bug. ***

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

* [Bug c++/97165] [10/11/12/13 Regression] Infinite error stream on invalid code
  2020-09-22 14:16 [Bug c++/97165] New: Infinite error stream on invalid code mpolacek at gcc dot gnu.org
                   ` (8 preceding siblings ...)
  2022-08-08  0:05 ` pinskia at gcc dot gnu.org
@ 2022-08-08  0:11 ` f.heckenbach@fh-soft.de
  2023-07-07 10:38 ` [Bug c++/97165] [11/12/13/14 " rguenth at gcc dot gnu.org
  10 siblings, 0 replies; 12+ messages in thread
From: f.heckenbach@fh-soft.de @ 2022-08-08  0:11 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #8 from Frank Heckenbach <f.heckenbach@fh-soft.de> ---
Actually not infinite, just very many, see 106549.

(Can the title be changed? It's why I didn't see this as a possible duplicate.)

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

* [Bug c++/97165] [11/12/13/14 Regression] Infinite error stream on invalid code
  2020-09-22 14:16 [Bug c++/97165] New: Infinite error stream on invalid code mpolacek at gcc dot gnu.org
                   ` (9 preceding siblings ...)
  2022-08-08  0:11 ` f.heckenbach@fh-soft.de
@ 2023-07-07 10:38 ` rguenth at gcc dot gnu.org
  10 siblings, 0 replies; 12+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-07-07 10:38 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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

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

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

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-22 14:16 [Bug c++/97165] New: Infinite error stream on invalid code mpolacek at gcc dot gnu.org
2020-09-22 14:17 ` [Bug c++/97165] [9/10/11 Regression] " mpolacek at gcc dot gnu.org
2020-09-22 14:17 ` mpolacek at gcc dot gnu.org
2020-09-22 15:50 ` mpolacek at gcc dot gnu.org
2020-10-12 11:49 ` rguenth at gcc dot gnu.org
2021-06-01  8:18 ` [Bug c++/97165] [9/10/11/12 " rguenth at gcc dot gnu.org
2022-04-13 19:41 ` mpolacek at gcc dot gnu.org
2022-05-27  9:43 ` [Bug c++/97165] [10/11/12/13 " rguenth at gcc dot gnu.org
2022-06-28 10:42 ` jakub at gcc dot gnu.org
2022-08-08  0:05 ` pinskia at gcc dot gnu.org
2022-08-08  0:11 ` f.heckenbach@fh-soft.de
2023-07-07 10:38 ` [Bug c++/97165] [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).