public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/12650] New: [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O"
@ 2003-10-16 20:48 steven at gcc dot gnu dot org
  2003-10-16 22:20 ` [Bug c/12650] " pinskia at gcc dot gnu dot org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: steven at gcc dot gnu dot org @ 2003-10-16 20:48 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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

           Summary: [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but
                    not with "-O"
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: steven at gcc dot gnu dot org
                CC: dnovillo at redhat dot com,gcc-bugs at gcc dot gnu dot
                    org

The following:

void
foo (void)
{
  goto loop_entry;
loop_start:
loop_entry:
  goto loop_start;
loop_exit:
}

compiles with just "-O" but segfaults with "-O -fssa"

Normally I wouldn't give a s... about -fssa, but:
a) this test case was deduced from gcc.dg/20020304-1.c which
   also ICEs on the tree-ssa branch on a sanity check after
   -fssa-ccp.  This new ICE might be related, perhaps we just
   compute broken dominance information for RTL???
b) this ICE happens in tree-flow-inline.h according to gdb:

Program received signal SIGSEGV, Segmentation fault.
compute_dominance_frontiers_1 (frontiers=0x8627520, idom=0x8627610, bb=0,
    done=0x86275f8) at tree-flow-inline.h:270
270     tree-flow-inline.h: No such file or directory.
        in tree-flow-inline.h

    Weird to have a tree-ssa failure with RTL SSA, but in tree-ssa code!


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

* [Bug c/12650] [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O"
  2003-10-16 20:48 [Bug c/12650] New: [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O" steven at gcc dot gnu dot org
@ 2003-10-16 22:20 ` pinskia at gcc dot gnu dot org
  2003-10-16 22:42 ` dnovillo at redhat dot com
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-10-16 22:20 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From pinskia at gcc dot gnu dot org  2003-10-16 22:20 -------
*** Bug 12652 has been marked as a duplicate of this bug. ***


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

* [Bug c/12650] [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O"
  2003-10-16 20:48 [Bug c/12650] New: [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O" steven at gcc dot gnu dot org
  2003-10-16 22:20 ` [Bug c/12650] " pinskia at gcc dot gnu dot org
@ 2003-10-16 22:42 ` dnovillo at redhat dot com
  2003-10-16 22:44 ` steven at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: dnovillo at redhat dot com @ 2003-10-16 22:42 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From dnovillo at redhat dot com  2003-10-16 22:42 -------
Subject: Re:  New: [tree-ssa] ICE in tree-flow-inline.h with
	"-O -fssa" but not with "-O"

On Thu, 2003-10-16 at 16:48, steven at gcc dot gnu dot org wrote:

>     Weird to have a tree-ssa failure with RTL SSA, but in tree-ssa code!
> 
Parts of the common code that used to exist in RTL SSA has been moved
into the tree-* files to make it easier to remove the RTL SSA stuff at a
later date.


Diego.


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

* [Bug c/12650] [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O"
  2003-10-16 20:48 [Bug c/12650] New: [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O" steven at gcc dot gnu dot org
  2003-10-16 22:20 ` [Bug c/12650] " pinskia at gcc dot gnu dot org
  2003-10-16 22:42 ` dnovillo at redhat dot com
@ 2003-10-16 22:44 ` steven at gcc dot gnu dot org
  2003-10-16 22:48 ` dnovillo at redhat dot com
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: steven at gcc dot gnu dot org @ 2003-10-16 22:44 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From steven at gcc dot gnu dot org  2003-10-16 22:44 -------
Subject: Re:  [tree-ssa] ICE in tree-flow-inline.h with "-O
	-fssa" but not with "-O"

Op vr 17-10-2003, om 00:42 schreef dnovillo at redhat dot com:
> Parts of the common code that used to exist in RTL SSA has been moved
> into the tree-* files to make it easier to remove the RTL SSA stuff at a
> later date.

So the decision has been made and RTL SSA is going to be wiped away?  We
were just discussing this on IRC :)  I thought Jeff still had plans with
it??

Gr.
Steven


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

* [Bug c/12650] [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O"
  2003-10-16 20:48 [Bug c/12650] New: [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O" steven at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2003-10-16 22:44 ` steven at gcc dot gnu dot org
@ 2003-10-16 22:48 ` dnovillo at redhat dot com
  2003-10-16 23:44 ` steven at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: dnovillo at redhat dot com @ 2003-10-16 22:48 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From dnovillo at redhat dot com  2003-10-16 22:48 -------
Subject: Re:  [tree-ssa] ICE in tree-flow-inline.h with "-O
	-fssa" but not with "-O"

On Thu, 2003-10-16 at 18:44, steven at gcc dot gnu dot org wrote:

> So the decision has been made and RTL SSA is going to be wiped away?  We
> were just discussing this on IRC :)  I thought Jeff still had plans with
> it??
> 
Dunno.  I thought it was going to be removed, but I haven't been paying
much attention to that issue.


Diego.


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

* [Bug c/12650] [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O"
  2003-10-16 20:48 [Bug c/12650] New: [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O" steven at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2003-10-16 22:48 ` dnovillo at redhat dot com
@ 2003-10-16 23:44 ` steven at gcc dot gnu dot org
  2003-10-17 14:14 ` [Bug optimization/12650] " pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: steven at gcc dot gnu dot org @ 2003-10-16 23:44 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From steven at gcc dot gnu dot org  2003-10-16 23:44 -------
OK then.  Let's XFAIL gcc.dg/20020304-1.c and close this report.


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

* [Bug optimization/12650] [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O"
  2003-10-16 20:48 [Bug c/12650] New: [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O" steven at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2003-10-16 23:44 ` steven at gcc dot gnu dot org
@ 2003-10-17 14:14 ` pinskia at gcc dot gnu dot org
  2003-10-19  7:19 ` pinskia at gcc dot gnu dot org
  2003-11-26  2:09 ` pinskia at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-10-17 14:14 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|c                           |optimization


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

* [Bug optimization/12650] [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O"
  2003-10-16 20:48 [Bug c/12650] New: [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O" steven at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2003-10-17 14:14 ` [Bug optimization/12650] " pinskia at gcc dot gnu dot org
@ 2003-10-19  7:19 ` pinskia at gcc dot gnu dot org
  2003-11-26  2:09 ` pinskia at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-10-19  7:19 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2003-10-19 07:09:37
               date|                            |


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

* [Bug optimization/12650] [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O"
  2003-10-16 20:48 [Bug c/12650] New: [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O" steven at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2003-10-19  7:19 ` pinskia at gcc dot gnu dot org
@ 2003-11-26  2:09 ` pinskia at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-11-26  2:09 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-11-26 02:09 -------
Closing as will not fix as -fssa has now been removed from the mainline and the tree-ssa.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |WONTFIX


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


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

end of thread, other threads:[~2003-11-26  2:09 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-16 20:48 [Bug c/12650] New: [tree-ssa] ICE in tree-flow-inline.h with "-O -fssa" but not with "-O" steven at gcc dot gnu dot org
2003-10-16 22:20 ` [Bug c/12650] " pinskia at gcc dot gnu dot org
2003-10-16 22:42 ` dnovillo at redhat dot com
2003-10-16 22:44 ` steven at gcc dot gnu dot org
2003-10-16 22:48 ` dnovillo at redhat dot com
2003-10-16 23:44 ` steven at gcc dot gnu dot org
2003-10-17 14:14 ` [Bug optimization/12650] " pinskia at gcc dot gnu dot org
2003-10-19  7:19 ` pinskia at gcc dot gnu dot org
2003-11-26  2:09 ` pinskia at gcc dot gnu dot 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).