public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/55862] New: ICE in compute_antic, at tree-ssa-pre.c:2495
@ 2013-01-03 14:13 antoine.balestrat at gmail dot com
  2013-01-03 16:20 ` [Bug tree-optimization/55862] [4.8 Regression] " rguenth at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: antoine.balestrat at gmail dot com @ 2013-01-03 14:13 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 55862
           Summary: ICE in compute_antic, at tree-ssa-pre.c:2495
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: antoine.balestrat@gmail.com


Hi ! The following testcase makes GCC 4.8.0 as of 20130103 crash at -O2.
It may be related to PR55348 (which was probably a dup anyway).

$ cat antic.c
int g, a, *b;

void f(void)
{
    int *p;

    if(g)
    {
        int **k = &p;

        if(0)
        {
            while(g++)
                for(*b = 0; *b; b++)
label1:
                    ;
        }

        for(; g; p++)
            for(a = 0; a < 1; a++)
            {
                int *c = p;
label2:
                if(a < 1)
                    *c = 0;
            }

        goto label1;
    }

    goto label2;
}

$ xgcc -O2 -w antic.c
antic.c: In function ‘f’:
antic.c:3:6: internal compiler error: in compute_antic, at tree-ssa-pre.c:2495
 void f(void)
      ^
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.


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

end of thread, other threads:[~2013-01-07 14:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-03 14:13 [Bug tree-optimization/55862] New: ICE in compute_antic, at tree-ssa-pre.c:2495 antoine.balestrat at gmail dot com
2013-01-03 16:20 ` [Bug tree-optimization/55862] [4.8 Regression] " rguenth at gcc dot gnu.org
2013-01-04 11:59 ` rguenth at gcc dot gnu.org
2013-01-04 13:29 ` rguenth at gcc dot gnu.org
2013-01-04 13:29 ` rguenth at gcc dot gnu.org
2013-01-07 13:50 ` rguenth at gcc dot gnu.org
2013-01-07 14:06 ` 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).