public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/108042] New: [10/11/12/13 Regression] weakref on an extern decl is incorrectly ignored
@ 2022-12-10  3:42 pinskia at gcc dot gnu.org
  2022-12-10  3:43 ` [Bug middle-end/108042] " pinskia at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-12-10  3:42 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 108042
           Summary: [10/11/12/13 Regression] weakref on an extern decl is
                    incorrectly ignored
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Keywords: wrong-code
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pinskia at gcc dot gnu.org
  Target Milestone: ---

From:
https://gcc.gnu.org/onlinedocs/gcc-12.2.0/gcc/Common-Function-Attributes.html#index-weakref-function-attribute

Without a target given as an argument to weakref or to alias, weakref is
equivalent to weak (in that case the declaration may be extern).

Testcase:
```
void KNOWNNOTOBEAFUNCTION(void) __attribute__((weakref));

int main() {
    if (KNOWNNOTOBEAFUNCTION)
        __builtin_abort();
    else
        return 0;
}
```

This should pass.

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

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

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-10  3:42 [Bug middle-end/108042] New: [10/11/12/13 Regression] weakref on an extern decl is incorrectly ignored pinskia at gcc dot gnu.org
2022-12-10  3:43 ` [Bug middle-end/108042] " pinskia at gcc dot gnu.org
2022-12-11 12:36 ` rguenth at gcc dot gnu.org
2022-12-11 13:12 ` rguenth at gcc dot gnu.org
2023-07-07 10:44 ` [Bug middle-end/108042] [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).