public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls
@ 2013-03-05 16:23 redi at gcc dot gnu.org
  2013-03-05 16:25 ` [Bug tree-optimization/56539] " redi at gcc dot gnu.org
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: redi at gcc dot gnu.org @ 2013-03-05 16:23 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 56539
           Summary: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed:
                    caused by -foptimize-sibling-calls
    Classification: Unclassified
           Product: gcc
           Version: 4.6.3
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code, wrong-code
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: redi@gcc.gnu.org


short string2int( const char * buf, unsigned len )
{
    return (len > 1) ? ( buf[len-1] - '0' ) + (short)10 * string2int(buf,
len-1) : ( *buf - '0' );
}

#include <assert.h>

int main()
{
    assert( string2int("13", 2) == 13);
    return 0;
}


At -O2 this program fails the assertion with 4.6 and 4.7

A 4.8 build with --enable-checking gets an ICE in verify_ssa

$ ~/gcc/4.8/bin/gcc t.c -O2
t.c: In function 'string2int':
t.c:12:1: error: definition in block 3 follows the use
 }
 ^
for SSA_NAME: _15 in statement:
acc_tmp_17 = (short int) _15;
t.c:12:1: internal compiler error: verify_ssa failed
0xa57004 verify_ssa(bool)
        ../../gcc-4.8/gcc/tree-ssa.c:1049
0x83ea9e execute_function_todo
        ../../gcc-4.8/gcc/passes.c:1967
0x83f56c execute_todo
        ../../gcc-4.8/gcc/passes.c:1999
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.


Using -fno-optimize-sibling-calls makes the bug go away for all versions.


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

* [Bug tree-optimization/56539] [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls
  2013-03-05 16:23 [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls redi at gcc dot gnu.org
@ 2013-03-05 16:25 ` redi at gcc dot gnu.org
  2013-03-05 16:28 ` redi at gcc dot gnu.org
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: redi at gcc dot gnu.org @ 2013-03-05 16:25 UTC (permalink / raw)
  To: gcc-bugs


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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |4.4.3
      Known to fail|                            |4.5.2, 4.6.3, 4.7.3, 4.8.0

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> 2013-03-05 16:24:59 UTC ---
4.4.3 is OK, 4.5.2 fails the asertion


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

* [Bug tree-optimization/56539] [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls
  2013-03-05 16:23 [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls redi at gcc dot gnu.org
  2013-03-05 16:25 ` [Bug tree-optimization/56539] " redi at gcc dot gnu.org
@ 2013-03-05 16:28 ` redi at gcc dot gnu.org
  2013-03-05 16:34 ` mpolacek at gcc dot gnu.org
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: redi at gcc dot gnu.org @ 2013-03-05 16:28 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> 2013-03-05 16:27:50 UTC ---
N.B. -O3 is needed to trigger the bug with 4.5.2


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

* [Bug tree-optimization/56539] [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls
  2013-03-05 16:23 [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls redi at gcc dot gnu.org
  2013-03-05 16:25 ` [Bug tree-optimization/56539] " redi at gcc dot gnu.org
  2013-03-05 16:28 ` redi at gcc dot gnu.org
@ 2013-03-05 16:34 ` mpolacek at gcc dot gnu.org
  2013-03-05 21:14 ` vchou79 at gmail dot com
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2013-03-05 16:34 UTC (permalink / raw)
  To: gcc-bugs


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

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2013-03-05
                 CC|                            |mpolacek at gcc dot gnu.org
   Target Milestone|---                         |4.8.0
     Ever Confirmed|0                           |1

--- Comment #3 from Marek Polacek <mpolacek at gcc dot gnu.org> 2013-03-05 16:34:13 UTC ---
Confirmed.


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

* [Bug tree-optimization/56539] [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls
  2013-03-05 16:23 [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls redi at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2013-03-05 16:34 ` mpolacek at gcc dot gnu.org
@ 2013-03-05 21:14 ` vchou79 at gmail dot com
  2013-03-06  7:23 ` jakub at gcc dot gnu.org
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: vchou79 at gmail dot com @ 2013-03-05 21:14 UTC (permalink / raw)
  To: gcc-bugs


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

Vincent <vchou79 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vchou79 at gmail dot com

--- Comment #4 from Vincent <vchou79 at gmail dot com> 2013-03-05 21:14:04 UTC ---
bash-4.1$ x86_64-w64-mingw32-gcc -O2 t.c
t.c: In function 'main':
t.c:9:5: internal compiler error: Segmentation fault
 int main()
     ^
0x71fa65 crash_signal
        ../../gcc-4_8-trunk/gcc/toplev.c:332
0x748617 ssa_default_def(function*, tree_node*)
        ../../gcc-4_8-trunk/gcc/tree-dfa.c:310
0x748688 get_or_create_ssa_default_def(function*, tree_node*)
        ../../gcc-4_8-trunk/gcc/tree-dfa.c:362
0x760f7c get_reaching_def
        ../../gcc-4_8-trunk/gcc/tree-into-ssa.c:1155
0x76364b maybe_replace_use
        ../../gcc-4_8-trunk/gcc/tree-into-ssa.c:1772
0x76364b rewrite_update_stmt
        ../../gcc-4_8-trunk/gcc/tree-into-ssa.c:1955
0x76364b rewrite_update_enter_block
        ../../gcc-4_8-trunk/gcc/tree-into-ssa.c:2124
0xab5380 walk_dominator_tree(dom_walk_data*, basic_block_def*)
        ../../gcc-4_8-trunk/gcc/domwalk.c:187
0x761183 rewrite_blocks
        ../../gcc-4_8-trunk/gcc/tree-into-ssa.c:2204
0x7669bc update_ssa(unsigned int)
        ../../gcc-4_8-trunk/gcc/tree-into-ssa.c:3283
0xb371a4 tree_unroll_loops_completely(bool, bool)
        ../../gcc-4_8-trunk/gcc/tree-ssa-loop-ivcanon.c:1175
0x7d4c92 tree_complete_unroll_inner
        ../../gcc-4_8-trunk/gcc/tree-ssa-loop.c:511
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.

gcc version 4.8.0 20130305 (experimental) [gcc-4_8-trunk revision 196448]


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

* [Bug tree-optimization/56539] [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls
  2013-03-05 16:23 [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls redi at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2013-03-05 21:14 ` vchou79 at gmail dot com
@ 2013-03-06  7:23 ` jakub at gcc dot gnu.org
  2013-03-06 14:14 ` jakub at gcc dot gnu.org
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-03-06  7:23 UTC (permalink / raw)
  To: gcc-bugs


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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-03-06 07:23:21 UTC ---
I'd say this started with
http://gcc.gnu.org/viewcvs?view=revision&revision=151935


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

* [Bug tree-optimization/56539] [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls
  2013-03-05 16:23 [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls redi at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2013-03-06  7:23 ` jakub at gcc dot gnu.org
@ 2013-03-06 14:14 ` jakub at gcc dot gnu.org
  2013-03-06 15:09 ` redi at gcc dot gnu.org
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-03-06 14:14 UTC (permalink / raw)
  To: gcc-bugs


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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
         AssignedTo|unassigned at gcc dot       |jakub at gcc dot gnu.org
                   |gnu.org                     |

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-03-06 14:14:24 UTC ---
Created attachment 29596
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=29596
gcc48-pr56539.patch

Untested fix.


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

* [Bug tree-optimization/56539] [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls
  2013-03-05 16:23 [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls redi at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2013-03-06 14:14 ` jakub at gcc dot gnu.org
@ 2013-03-06 15:09 ` redi at gcc dot gnu.org
  2013-03-06 21:21 ` vchou79 at gmail dot com
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: redi at gcc dot gnu.org @ 2013-03-06 15:09 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #7 from Jonathan Wakely <redi at gcc dot gnu.org> 2013-03-06 15:08:29 UTC ---
The patch fixes the problem for both 4.7 and 4.8, using the testcase above and
the original C++ one it was reduced from.


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

* [Bug tree-optimization/56539] [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls
  2013-03-05 16:23 [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls redi at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2013-03-06 15:09 ` redi at gcc dot gnu.org
@ 2013-03-06 21:21 ` vchou79 at gmail dot com
  2013-03-06 23:27 ` jakub at gcc dot gnu.org
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: vchou79 at gmail dot com @ 2013-03-06 21:21 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #8 from Vincent <vchou79 at gmail dot com> 2013-03-06 21:20:29 UTC ---
Jakub,
The patch also fixed this problem testcase on cross compiler
(x86_64-w64-mingw32).


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

* [Bug tree-optimization/56539] [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls
  2013-03-05 16:23 [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls redi at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2013-03-06 21:21 ` vchou79 at gmail dot com
@ 2013-03-06 23:27 ` jakub at gcc dot gnu.org
  2013-03-06 23:33 ` [Bug tree-optimization/56539] [4.6/4.7 " jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-03-06 23:27 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #9 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-03-06 23:26:48 UTC ---
Author: jakub
Date: Wed Mar  6 23:26:42 2013
New Revision: 196511

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=196511
Log:
    PR tree-optimization/56539
    * tree-tailcall.c (adjust_return_value_with_ops): Use GSI_SAME_STMT
    instead of GSI_CONTINUE_LINKING as last argument to
    force_gimple_operand_gsi.

    * gcc.c-torture/compile/pr56539.c: New test.

Added:
    trunk/gcc/testsuite/gcc.c-torture/compile/pr56539.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-tailcall.c


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

* [Bug tree-optimization/56539] [4.6/4.7 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls
  2013-03-05 16:23 [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls redi at gcc dot gnu.org
                   ` (8 preceding siblings ...)
  2013-03-06 23:27 ` jakub at gcc dot gnu.org
@ 2013-03-06 23:33 ` jakub at gcc dot gnu.org
  2013-04-03  8:26 ` jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-03-06 23:33 UTC (permalink / raw)
  To: gcc-bugs


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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |4.8.0
   Target Milestone|4.8.0                       |4.6.4
            Summary|[4.6/4.7/4.8 Regression]    |[4.6/4.7 Regression] ICE:
                   |ICE: verify_ssa failed:     |verify_ssa failed: caused
                   |caused by                   |by -foptimize-sibling-calls
                   |-foptimize-sibling-calls    |
      Known to fail|4.7.3, 4.8.0                |4.7.2

--- Comment #10 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-03-06 23:33:03 UTC ---
Fixed on the trunk so far.


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

* [Bug tree-optimization/56539] [4.6/4.7 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls
  2013-03-05 16:23 [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls redi at gcc dot gnu.org
                   ` (9 preceding siblings ...)
  2013-03-06 23:33 ` [Bug tree-optimization/56539] [4.6/4.7 " jakub at gcc dot gnu.org
@ 2013-04-03  8:26 ` jakub at gcc dot gnu.org
  2013-04-03  8:26 ` [Bug tree-optimization/56539] [4.6 " jakub at gcc dot gnu.org
  2013-04-03 18:21 ` jakub at gcc dot gnu.org
  12 siblings, 0 replies; 14+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-04-03  8:26 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #11 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-04-03 08:26:20 UTC ---
Author: jakub
Date: Wed Apr  3 08:22:12 2013
New Revision: 197392

URL: http://gcc.gnu.org/viewcvs?rev=197392&root=gcc&view=rev
Log:
    Backported from mainline
    2013-03-06  Jakub Jelinek  <jakub@redhat.com>

    PR tree-optimization/56539
    * tree-tailcall.c (adjust_return_value_with_ops): Use GSI_SAME_STMT
    instead of GSI_CONTINUE_LINKING as last argument to
    force_gimple_operand_gsi.  Adjust function comment.

    * gcc.c-torture/compile/pr56539.c: New test.

Added:
    branches/gcc-4_7-branch/gcc/testsuite/gcc.c-torture/compile/pr56539.c
Modified:
    branches/gcc-4_7-branch/gcc/ChangeLog
    branches/gcc-4_7-branch/gcc/testsuite/ChangeLog
    branches/gcc-4_7-branch/gcc/tree-tailcall.c


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

* [Bug tree-optimization/56539] [4.6 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls
  2013-03-05 16:23 [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls redi at gcc dot gnu.org
                   ` (10 preceding siblings ...)
  2013-04-03  8:26 ` jakub at gcc dot gnu.org
@ 2013-04-03  8:26 ` jakub at gcc dot gnu.org
  2013-04-03 18:21 ` jakub at gcc dot gnu.org
  12 siblings, 0 replies; 14+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-04-03  8:26 UTC (permalink / raw)
  To: gcc-bugs


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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |4.7.3
            Summary|[4.6/4.7 Regression] ICE:   |[4.6 Regression] ICE:
                   |verify_ssa failed: caused   |verify_ssa failed: caused
                   |by -foptimize-sibling-calls |by -foptimize-sibling-calls

--- Comment #12 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-04-03 08:26:48 UTC ---
Fixed for 4.7.3+ too.


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

* [Bug tree-optimization/56539] [4.6 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls
  2013-03-05 16:23 [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls redi at gcc dot gnu.org
                   ` (11 preceding siblings ...)
  2013-04-03  8:26 ` [Bug tree-optimization/56539] [4.6 " jakub at gcc dot gnu.org
@ 2013-04-03 18:21 ` jakub at gcc dot gnu.org
  12 siblings, 0 replies; 14+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-04-03 18:21 UTC (permalink / raw)
  To: gcc-bugs


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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #13 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-04-03 18:21:37 UTC ---
Author: jakub
Date: Wed Apr  3 18:05:09 2013
New Revision: 197451

URL: http://gcc.gnu.org/viewcvs?rev=197451&root=gcc&view=rev
Log:
    Backported from mainline
    2013-03-06  Jakub Jelinek  <jakub@redhat.com>

    PR tree-optimization/56539
    * tree-tailcall.c (adjust_return_value_with_ops): Use GSI_SAME_STMT
    instead of GSI_CONTINUE_LINKING as last argument to
    force_gimple_operand_gsi.  Adjust function comment.

    * gcc.c-torture/compile/pr56539.c: New test.

Added:
    branches/gcc-4_6-branch/gcc/testsuite/gcc.c-torture/compile/pr56539.c
Modified:
    branches/gcc-4_6-branch/gcc/ChangeLog
    branches/gcc-4_6-branch/gcc/testsuite/ChangeLog
    branches/gcc-4_6-branch/gcc/tree-tailcall.c


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

end of thread, other threads:[~2013-04-03 18:21 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-05 16:23 [Bug tree-optimization/56539] New: [4.6/4.7/4.8 Regression] ICE: verify_ssa failed: caused by -foptimize-sibling-calls redi at gcc dot gnu.org
2013-03-05 16:25 ` [Bug tree-optimization/56539] " redi at gcc dot gnu.org
2013-03-05 16:28 ` redi at gcc dot gnu.org
2013-03-05 16:34 ` mpolacek at gcc dot gnu.org
2013-03-05 21:14 ` vchou79 at gmail dot com
2013-03-06  7:23 ` jakub at gcc dot gnu.org
2013-03-06 14:14 ` jakub at gcc dot gnu.org
2013-03-06 15:09 ` redi at gcc dot gnu.org
2013-03-06 21:21 ` vchou79 at gmail dot com
2013-03-06 23:27 ` jakub at gcc dot gnu.org
2013-03-06 23:33 ` [Bug tree-optimization/56539] [4.6/4.7 " jakub at gcc dot gnu.org
2013-04-03  8:26 ` jakub at gcc dot gnu.org
2013-04-03  8:26 ` [Bug tree-optimization/56539] [4.6 " jakub at gcc dot gnu.org
2013-04-03 18:21 ` 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).