public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/53516] New: Vectorization and memset recognition miscompile bitfield stores
@ 2012-05-29 13:13 rguenth at gcc dot gnu.org
  2012-05-29 13:19 ` [Bug tree-optimization/53516] [4.6/4.7/4.8 Regression] " rguenth at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-05-29 13:13 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53516

             Bug #: 53516
           Summary: Vectorization and memset recognition miscompile
                    bitfield stores
    Classification: Unclassified
           Product: gcc
           Version: 4.7.1
            Status: UNCONFIRMED
          Keywords: wrong-code
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: rguenth@gcc.gnu.org
        ReportedBy: rguenth@gcc.gnu.org


The following is miscompiled at -O3.

extern void abort (void);

struct Foo
{
  char a : 1;
  char b : 7;
};

struct Foo x[256];
int y[256];

void __attribute__((noinline,noclone)) bar (int n)
{
  int i;
  for (i = 0; i < n; ++i)
    {
      x[i].a = 0;
      y[i] = 3;
    }
}

int main()
{
  x[5].b = 7;
  bar (256);
  if (x[5].b != 7)
    abort ();
  return 0;
}


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

end of thread, other threads:[~2013-04-12 16:25 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-29 13:13 [Bug tree-optimization/53516] New: Vectorization and memset recognition miscompile bitfield stores rguenth at gcc dot gnu.org
2012-05-29 13:19 ` [Bug tree-optimization/53516] [4.6/4.7/4.8 Regression] " rguenth at gcc dot gnu.org
2012-05-29 14:30 ` rguenth at gcc dot gnu.org
2012-05-29 14:44 ` rguenth at gcc dot gnu.org
2012-05-29 14:45 ` rguenth at gcc dot gnu.org
2012-05-29 14:57 ` [Bug tree-optimization/53516] [4.6 " rguenth at gcc dot gnu.org
2013-04-12 16:25 ` jakub 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).