public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/108213] New: [[noreturn]] cannot be used after static keyword
@ 2022-12-23 15:41 marxin at gcc dot gnu.org
  2022-12-23 15:46 ` [Bug c/108213] " pinskia at gcc dot gnu.org
  2022-12-27 10:14 ` marxin at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: marxin at gcc dot gnu.org @ 2022-12-23 15:41 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 108213
           Summary: [[noreturn]] cannot be used after static keyword
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: marxin at gcc dot gnu.org
                CC: jsm28 at gcc dot gnu.org
  Target Milestone: ---

I noticed that in timezone package:

$ cat zic.i && gcc-12 zic.i -c
static _Noreturn void
time_overflow(void)
{
  __builtin_abort ();
}

$ cat zic.i && gcc-12 zic.i -c
static [[noreturn]] void
time_overflow(void)
{
  __builtin_abort ();
}
zic.i:1:1: warning: ‘noreturn’ attribute ignored [-Wattributes]
    1 | static [[noreturn]] void
      | ^~~~~~
zic.i:1:21: error: expected identifier or ‘(’ before ‘void’
    1 | static [[noreturn]] void
      |                     ^~~~

Is it really an invalid construction?

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

* [Bug c/108213] [[noreturn]] cannot be used after static keyword
  2022-12-23 15:41 [Bug c/108213] New: [[noreturn]] cannot be used after static keyword marxin at gcc dot gnu.org
@ 2022-12-23 15:46 ` pinskia at gcc dot gnu.org
  2022-12-27 10:14 ` marxin at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-12-23 15:46 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |DUPLICATE
             Status|UNCONFIRMED                 |RESOLVED

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
It is a bug in the timezone sources.

*** This bug has been marked as a duplicate of bug 107947 ***

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

* [Bug c/108213] [[noreturn]] cannot be used after static keyword
  2022-12-23 15:41 [Bug c/108213] New: [[noreturn]] cannot be used after static keyword marxin at gcc dot gnu.org
  2022-12-23 15:46 ` [Bug c/108213] " pinskia at gcc dot gnu.org
@ 2022-12-27 10:14 ` marxin at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: marxin at gcc dot gnu.org @ 2022-12-27 10:14 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to Andrew Pinski from comment #1)
> It is a bug in the timezone sources.

Btw. fixed in
https://github.com/eggert/tz/commit/9cfe9507fcc22cd4a0c4da486ea1c7f0de6b075f

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

end of thread, other threads:[~2022-12-27 10:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-23 15:41 [Bug c/108213] New: [[noreturn]] cannot be used after static keyword marxin at gcc dot gnu.org
2022-12-23 15:46 ` [Bug c/108213] " pinskia at gcc dot gnu.org
2022-12-27 10:14 ` marxin 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).