public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/99696] New: lto looks past aliases to initializers
@ 2021-03-21 15:34 rth at gcc dot gnu.org
  2021-03-21 17:23 ` [Bug middle-end/99696] " rth at gcc dot gnu.org
  2021-03-22  9:15 ` [Bug ipa/99696] " rguenth at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: rth at gcc dot gnu.org @ 2021-03-21 15:34 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 99696
           Summary: lto looks past aliases to initializers
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rth at gcc dot gnu.org
  Target Milestone: ---

The following is a c-ish version of

  const int y = init();

which no longer works with gcc 11.

The intended advantage to the program from which this is
extracted is that references to Y may be cse'd across calls.

IMO this should work fine with LTO, so long as it does not
apply the constant initializer optimization to const variables
that are aliased.

Compile: gcc -O2 -flto y?.c

--- y1.c ---
#include <assert.h>
extern const int y;
int main(void)
{
    assert(y == 1);
    return 0;
}

--- y2.c ---
static int x;
extern const int y __attribute__((alias("x")));
static void __attribute__((constructor)) init(void)
{
    x = 1;
}

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

end of thread, other threads:[~2021-03-22  9:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-21 15:34 [Bug middle-end/99696] New: lto looks past aliases to initializers rth at gcc dot gnu.org
2021-03-21 17:23 ` [Bug middle-end/99696] " rth at gcc dot gnu.org
2021-03-22  9:15 ` [Bug ipa/99696] " 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).