public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/85979] Diagnostic says "__alignof" when the source says "alignof"
       [not found] <bug-85979-4@http.gcc.gnu.org/bugzilla/>
@ 2020-11-10 17:39 ` ppalka at gcc dot gnu.org
  2021-04-27 11:38 ` jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: ppalka at gcc dot gnu.org @ 2020-11-10 17:39 UTC (permalink / raw)
  To: gcc-bugs

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

Patrick Palka <ppalka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |11.0
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2020-11-10
             Status|UNCONFIRMED                 |ASSIGNED
                 CC|                            |ppalka at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |ppalka at gcc dot gnu.org

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

* [Bug c++/85979] Diagnostic says "__alignof" when the source says "alignof"
       [not found] <bug-85979-4@http.gcc.gnu.org/bugzilla/>
  2020-11-10 17:39 ` [Bug c++/85979] Diagnostic says "__alignof" when the source says "alignof" ppalka at gcc dot gnu.org
@ 2021-04-27 11:38 ` jakub at gcc dot gnu.org
  2021-07-28  7:04 ` rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: jakub at gcc dot gnu.org @ 2021-04-27 11:38 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|11.0                        |11.2

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 11.1 has been released, retargeting bugs to GCC 11.2.

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

* [Bug c++/85979] Diagnostic says "__alignof" when the source says "alignof"
       [not found] <bug-85979-4@http.gcc.gnu.org/bugzilla/>
  2020-11-10 17:39 ` [Bug c++/85979] Diagnostic says "__alignof" when the source says "alignof" ppalka at gcc dot gnu.org
  2021-04-27 11:38 ` jakub at gcc dot gnu.org
@ 2021-07-28  7:04 ` rguenth at gcc dot gnu.org
  2023-05-07 16:11 ` cvs-commit at gcc dot gnu.org
  2023-05-07 16:14 ` ppalka at gcc dot gnu.org
  4 siblings, 0 replies; 5+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-07-28  7:04 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|11.2                        |---

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

* [Bug c++/85979] Diagnostic says "__alignof" when the source says "alignof"
       [not found] <bug-85979-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2021-07-28  7:04 ` rguenth at gcc dot gnu.org
@ 2023-05-07 16:11 ` cvs-commit at gcc dot gnu.org
  2023-05-07 16:14 ` ppalka at gcc dot gnu.org
  4 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2023-05-07 16:11 UTC (permalink / raw)
  To: gcc-bugs

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

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

https://gcc.gnu.org/g:f9777f1b56f2794ff6cbbbd69ca588747d8ccf67

commit r14-564-gf9777f1b56f2794ff6cbbbd69ca588747d8ccf67
Author: Patrick Palka <ppalka@redhat.com>
Date:   Sun May 7 12:10:39 2023 -0400

    c++: fix pretty printing of 'alignof' vs '__alignof__' [PR85979]

            PR c++/85979

    gcc/cp/ChangeLog:

            * cxx-pretty-print.cc (cxx_pretty_printer::unary_expression)
            <case ALIGNOF_EXPR>: Consider ALIGNOF_EXPR_STD_P.
            * error.cc (dump_expr) <case ALIGNOF_EXPR>: Likewise.

    gcc/testsuite/ChangeLog:

            * g++.dg/diagnostic/alignof4.C: New test.

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

* [Bug c++/85979] Diagnostic says "__alignof" when the source says "alignof"
       [not found] <bug-85979-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2023-05-07 16:11 ` cvs-commit at gcc dot gnu.org
@ 2023-05-07 16:14 ` ppalka at gcc dot gnu.org
  4 siblings, 0 replies; 5+ messages in thread
From: ppalka at gcc dot gnu.org @ 2023-05-07 16:14 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Patrick Palka <ppalka at gcc dot gnu.org> ---
Oops, this is not quite fixed.. we still need to adjust the diagnostics in
cxx_alignof_expr that currently always spell it '__alignof'

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

end of thread, other threads:[~2023-05-07 16:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-85979-4@http.gcc.gnu.org/bugzilla/>
2020-11-10 17:39 ` [Bug c++/85979] Diagnostic says "__alignof" when the source says "alignof" ppalka at gcc dot gnu.org
2021-04-27 11:38 ` jakub at gcc dot gnu.org
2021-07-28  7:04 ` rguenth at gcc dot gnu.org
2023-05-07 16:11 ` cvs-commit at gcc dot gnu.org
2023-05-07 16:14 ` ppalka 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).