public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/90915] [9/10 Regression] ICE in has_attribute, at c-family/c-attribs.c:4221
       [not found] <bug-90915-4@http.gcc.gnu.org/bugzilla/>
@ 2020-03-12 11:59 ` jakub at gcc dot gnu.org
  2020-05-08  1:17 ` [Bug c++/90915] [9/10/11 " mpolacek at gcc dot gnu.org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: jakub at gcc dot gnu.org @ 2020-03-12 11:59 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 9.3.0 has been released, adjusting target milestone.

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

* [Bug c++/90915] [9/10/11 Regression] ICE in has_attribute, at c-family/c-attribs.c:4221
       [not found] <bug-90915-4@http.gcc.gnu.org/bugzilla/>
  2020-03-12 11:59 ` [Bug c++/90915] [9/10 Regression] ICE in has_attribute, at c-family/c-attribs.c:4221 jakub at gcc dot gnu.org
@ 2020-05-08  1:17 ` mpolacek at gcc dot gnu.org
  2020-05-18 22:08 ` cvs-commit at gcc dot gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2020-05-08  1:17 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mpolacek at gcc dot gnu.org
           Priority|P4                          |P2
           Keywords|error-recovery,             |ice-on-valid-code
                   |ice-on-invalid-code         |

--- Comment #5 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
E.g. this is neither error-recovery or ice-on-invalid:

template<typename T>
void foo ()
{
  static_assert(!__builtin_has_attribute(T::a, aligned));
}

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

* [Bug c++/90915] [9/10/11 Regression] ICE in has_attribute, at c-family/c-attribs.c:4221
       [not found] <bug-90915-4@http.gcc.gnu.org/bugzilla/>
  2020-03-12 11:59 ` [Bug c++/90915] [9/10 Regression] ICE in has_attribute, at c-family/c-attribs.c:4221 jakub at gcc dot gnu.org
  2020-05-08  1:17 ` [Bug c++/90915] [9/10/11 " mpolacek at gcc dot gnu.org
@ 2020-05-18 22:08 ` cvs-commit at gcc dot gnu.org
  2020-05-18 22:10 ` [Bug c++/90915] [9/10 " mpolacek at gcc dot gnu.org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-05-18 22:08 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 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:5d2246a32c638e9caea109e5dd9f182f5cd43b2a

commit r11-471-g5d2246a32c638e9caea109e5dd9f182f5cd43b2a
Author: Marek Polacek <polacek@redhat.com>
Date:   Thu May 7 21:10:42 2020 -0400

    c++: Sorry about type-dependent arg for __builtin_has_attribute [PR90915]

    Until 92104 is fixed, let's sorry rather than crash.

            PR c++/90915
            * parser.c (cp_parser_has_attribute_expression): Sorry on a
            type-dependent argument.

            * g++.dg/ext/builtin-has-attribute.C: New test.

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

* [Bug c++/90915] [9/10 Regression] ICE in has_attribute, at c-family/c-attribs.c:4221
       [not found] <bug-90915-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2020-05-18 22:08 ` cvs-commit at gcc dot gnu.org
@ 2020-05-18 22:10 ` mpolacek at gcc dot gnu.org
  2020-06-11 20:22 ` cvs-commit at gcc dot gnu.org
  2020-06-11 20:23 ` [Bug c++/90915] [9 " mpolacek at gcc dot gnu.org
  5 siblings, 0 replies; 6+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2020-05-18 22:10 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[9/10/11 Regression] ICE in |[9/10 Regression] ICE in
                   |has_attribute, at           |has_attribute, at
                   |c-family/c-attribs.c:4221   |c-family/c-attribs.c:4221
           Assignee|paolo.carlini at oracle dot com    |mpolacek at gcc dot gnu.org

--- Comment #7 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Fixed on trunk.  I'll also backport to 10.

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

* [Bug c++/90915] [9/10 Regression] ICE in has_attribute, at c-family/c-attribs.c:4221
       [not found] <bug-90915-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2020-05-18 22:10 ` [Bug c++/90915] [9/10 " mpolacek at gcc dot gnu.org
@ 2020-06-11 20:22 ` cvs-commit at gcc dot gnu.org
  2020-06-11 20:23 ` [Bug c++/90915] [9 " mpolacek at gcc dot gnu.org
  5 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-06-11 20:22 UTC (permalink / raw)
  To: gcc-bugs

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

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

https://gcc.gnu.org/g:53e91f867bd1c3773d37b2efb8875b8b1416a9d2

commit r10-8276-g53e91f867bd1c3773d37b2efb8875b8b1416a9d2
Author: Marek Polacek <polacek@redhat.com>
Date:   Thu Jun 11 16:21:18 2020 -0400

    c++: Sorry about type-dependent arg for __builtin_has_attribute [PR90915]

    Until 92104 is fixed, let's sorry rather than crash.

            PR c++/90915
            * parser.c (cp_parser_has_attribute_expression): Sorry on a
            type-dependent argument.

            * g++.dg/ext/builtin-has-attribute.C: New test.

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

* [Bug c++/90915] [9 Regression] ICE in has_attribute, at c-family/c-attribs.c:4221
       [not found] <bug-90915-4@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2020-06-11 20:22 ` cvs-commit at gcc dot gnu.org
@ 2020-06-11 20:23 ` mpolacek at gcc dot gnu.org
  5 siblings, 0 replies; 6+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2020-06-11 20:23 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[9/10 Regression] ICE in    |[9 Regression] ICE in
                   |has_attribute, at           |has_attribute, at
                   |c-family/c-attribs.c:4221   |c-family/c-attribs.c:4221
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #9 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Done.

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

end of thread, other threads:[~2020-06-11 20:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-90915-4@http.gcc.gnu.org/bugzilla/>
2020-03-12 11:59 ` [Bug c++/90915] [9/10 Regression] ICE in has_attribute, at c-family/c-attribs.c:4221 jakub at gcc dot gnu.org
2020-05-08  1:17 ` [Bug c++/90915] [9/10/11 " mpolacek at gcc dot gnu.org
2020-05-18 22:08 ` cvs-commit at gcc dot gnu.org
2020-05-18 22:10 ` [Bug c++/90915] [9/10 " mpolacek at gcc dot gnu.org
2020-06-11 20:22 ` cvs-commit at gcc dot gnu.org
2020-06-11 20:23 ` [Bug c++/90915] [9 " 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).