public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/56448] New: cc1 hangs on volatile array with -O or above
@ 2013-02-25 21:11 dhazeghi at yahoo dot com
  2013-02-25 22:17 ` [Bug tree-optimization/56448] [4.8 Regression] " jakub at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: dhazeghi at yahoo dot com @ 2013-02-25 21:11 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 56448
           Summary: cc1 hangs on volatile array with -O or above
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: dhazeghi@yahoo.com


The following snippet (reduced from a larger test case) causes top-of-trunk cc1
to hang (infinite loop) on x86_64-linux using -O or above.  This is a
regression from 4.7.2 which does not have this issue.

$ cat volatile.c
volatile int a[1];
int b;
void fn1 ()
{
    for (;;)
    {
        int *c[3][6] =
        { 0, 0, 0, &b, 0, 0, 0, 0, &b, 0, 0, 0, 0, 0, 0, 0, &b, (int *)&a[0] };
        b = *c[2][5];
    }
}
$ gcc-trunk --version
gcc-trunk (GCC) 4.8.0 20130225 (experimental) [trunk revision 196255]
$ gcc-4.7 -O -c volatile.c
$ gcc-trunk -c volatile.c
$ gcc-trunk -O -c volatile.c
<hangs>


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

end of thread, other threads:[~2013-02-26 17:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-25 21:11 [Bug tree-optimization/56448] New: cc1 hangs on volatile array with -O or above dhazeghi at yahoo dot com
2013-02-25 22:17 ` [Bug tree-optimization/56448] [4.8 Regression] " jakub at gcc dot gnu.org
2013-02-25 22:41 ` jakub at gcc dot gnu.org
2013-02-26 10:01 ` jakub at gcc dot gnu.org
2013-02-26 10:19 ` jakub at gcc dot gnu.org
2013-02-26 17:47 ` dhazeghi at yahoo dot com

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).