public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/67816] [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build
  2015-10-02 10:37 [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build rguenth at gcc dot gnu.org
@ 2015-10-02 10:37 ` rguenth at gcc dot gnu.org
  2015-10-02 10:53 ` rguenth at gcc dot gnu.org
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-10-02 10:37 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |6.0


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

* [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build
@ 2015-10-02 10:37 rguenth at gcc dot gnu.org
  2015-10-02 10:37 ` [Bug tree-optimization/67816] " rguenth at gcc dot gnu.org
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-10-02 10:37 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816

            Bug ID: 67816
           Summary: [6 Regression] ICE in duplicate_thread_path,
                    186.crafty fails to build
           Product: gcc
           Version: 6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rguenth at gcc dot gnu.org
                CC: law at gcc dot gnu.org
  Target Milestone: ---

iterate.c: In function 'Iterate':
iterate.c:17:5: internal compiler error: in duplicate_thread_path, at
tree-ssa-threadupdate.c:2446
 int Iterate(int wtm, int search_type, int root_list_done)
     ^
option.c: In function 'Option':
option.c:2772:7: warning: implicit declaration of function 'gets'
[-Wimplicit-function-declaration]
       gets(buffer);
       ^
0xade17f duplicate_thread_path
        /gcc/spec/sb-czerny-head-64/gcc/gcc/tree-ssa-threadupdate.c:2445
0xade17f thread_through_all_blocks(bool)
        /gcc/spec/sb-czerny-head-64/gcc/gcc/tree-ssa-threadupdate.c:2632
0xa3be28 execute
        /gcc/spec/sb-czerny-head-64/gcc/gcc/tree-ssa-dom.c:622
Please submit a full bug report,
with preprocessed source if appropriate.


This is with -O3 on x86_64.


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

* [Bug tree-optimization/67816] [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build
  2015-10-02 10:37 [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build rguenth at gcc dot gnu.org
  2015-10-02 10:37 ` [Bug tree-optimization/67816] " rguenth at gcc dot gnu.org
@ 2015-10-02 10:53 ` rguenth at gcc dot gnu.org
  2015-10-02 11:10 ` mpolacek at gcc dot gnu.org
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-10-02 10:53 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Seen with r228349 btw.  Delta-reduced testcase:

typedef struct {
    int path[65];
} CHESS_PATH;
extern int early_exit;
extern int number_of_solutions;
extern int solutions[10];
extern int solution_type;
extern int iteration_depth;
extern int hash_table_size;
extern int *last[65];
extern signed char searched_this_root_move[256];
extern unsigned int root_nodes[256];
extern CHESS_PATH pv[65];
int Iterate(int wtm, int search_type, int root_list_done)
{
  int *mvp;
  int i, value=0, time_used;
  int correct, correct_count, material=0, sorted, temp;
  for (; iteration_depth<=60; iteration_depth++) {
      for (mvp=last[0]; mvp<last[1]; mvp++)
        searched_this_root_move[mvp-last[0]]=0;
      for (i=0; i<number_of_solutions; i++) {
          if (!solution_type) { 
              if (solutions[i] == pv[1].path[1]) correct=1;         }
          else if (solutions[i] == pv[1].path[1]) correct=0;
      }
      if (correct) correct_count++;
      if (correct_count >= early_exit) break;
      do {
          sorted=1;
          for (mvp=last[0]+1; mvp<last[1]-1; mvp++) {
              if (root_nodes[mvp-last[0]] < root_nodes[mvp-last[0]+1]) {
                  temp=*mvp;
                  *mvp=*(mvp+1);
                  *(mvp+1)=temp;
                  temp=root_nodes[mvp-last[0]];
                  root_nodes[mvp-last[0]]=root_nodes[mvp-last[0]+1];
                  root_nodes[mvp-last[0]+1]=temp;
                  sorted=0;
              }
          }
      }
      while(!sorted);
  }
}


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

* [Bug tree-optimization/67816] [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build
  2015-10-02 10:37 [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build rguenth at gcc dot gnu.org
  2015-10-02 10:37 ` [Bug tree-optimization/67816] " rguenth at gcc dot gnu.org
  2015-10-02 10:53 ` rguenth at gcc dot gnu.org
@ 2015-10-02 11:10 ` mpolacek at gcc dot gnu.org
  2015-10-02 12:01 ` rguenther at suse dot de
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2015-10-02 11:10 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816

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

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

--- Comment #2 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
I can't reproduce with the test case in Comment 1, even when I switch to that
revision.  Surely only -O3 is enough to trigger the ICE?


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

* [Bug tree-optimization/67816] [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build
  2015-10-02 10:37 [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build rguenth at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2015-10-02 11:10 ` mpolacek at gcc dot gnu.org
@ 2015-10-02 12:01 ` rguenther at suse dot de
  2015-10-04  7:01 ` rguenther at suse dot de
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: rguenther at suse dot de @ 2015-10-02 12:01 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816

--- Comment #3 from rguenther at suse dot de <rguenther at suse dot de> ---
On Fri, 2 Oct 2015, mpolacek at gcc dot gnu.org wrote:

> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816
> 
> Marek Polacek <mpolacek at gcc dot gnu.org> changed:
> 
>            What    |Removed                     |Added
> ----------------------------------------------------------------------------
>                  CC|                            |mpolacek at gcc dot gnu.org
> 
> --- Comment #2 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
> I can't reproduce with the test case in Comment 1, even when I switch to that
> revision.  Surely only -O3 is enough to trigger the ICE?

On the cited rev. yes.  In my heavily patched dev tree with current
trunk it doesn't fail.  But I don't see any DOM related changes
so the issue must be at least latent.


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

* [Bug tree-optimization/67816] [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build
  2015-10-02 10:37 [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build rguenth at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2015-10-02 12:01 ` rguenther at suse dot de
@ 2015-10-04  7:01 ` rguenther at suse dot de
  2015-10-05  8:16 ` rguenth at gcc dot gnu.org
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: rguenther at suse dot de @ 2015-10-04  7:01 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816

--- Comment #5 from rguenther at suse dot de <rguenther at suse dot de> ---
On October 2, 2015 5:58:24 PM GMT+02:00, law at redhat dot com
<gcc-bugzilla@gcc.gnu.org> wrote:
>https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816
>
>--- Comment #4 from Jeffrey A. Law <law at redhat dot com> ---
>I can't get it to fail either.  I've also tried running cc1 under
>valgrind to
>see if anything shows up.  Sadly nothing relevant.
>
>Richi, if this is still failing, can you get me a little context?  A
>gimple_debug_cfg (0x60) at the point of failure and anything in the DOM
>debugging dump (-fdump-whatever-details-blocks-vops)

Crafty is still ICEing on all our testers at -O3.  I'll re-reduce on Monday,
but eventually you have access to SPEC CPU 2000 as well.


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

* [Bug tree-optimization/67816] [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build
  2015-10-02 10:37 [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build rguenth at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2015-10-04  7:01 ` rguenther at suse dot de
@ 2015-10-05  8:16 ` rguenth at gcc dot gnu.org
  2015-10-05  8:23 ` rguenth at gcc dot gnu.org
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-10-05  8:16 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
Reduction result looks the same.  Maybe critical is that the compiler is built
with release checking (though that would be pretty serious - code gen depending
on CHECKING)

> /gcc/spec/sb-czerny-head-64/x86_64/install-201510042000/bin/gcc -O3 iterate.i -v -S
Using built-in specs.
COLLECT_GCC=/gcc/spec/sb-czerny-head-64/x86_64/install-201510042000/bin/gcc
Target: x86_64-pc-linux-gnu
Configured with: /gcc/spec/sb-czerny-head-64/gcc/configure --disable-bootstrap
--prefix=/gcc/spec/sb-czerny-head-64/x86_64/install-201510042000
--enable-languages=c,c++,fortran --enable-threads=posix --disable-nls
--enable-__cxa_atexit --enable-clocale=gnu --enable-checking=release
--disable-libstdcxx-pch --disable-libsanitizer --disable-libcilkrts
Thread model: posix
gcc version 6.0.0 20151004 (experimental) [trunk revision 228461] (GCC) 
COLLECT_GCC_OPTIONS='-O3' '-v' '-S' '-mtune=generic' '-march=x86-64'

/home/gcc/spec/sb-czerny-head-64/x86_64/install-201510042000/bin/../libexec/gcc/x86_64-pc-linux-gnu/6.0.0/cc1
-fpreprocessed iterate.i -quiet -dumpbase iterate.i -mtune=generic
-march=x86-64 -auxbase iterate -O3 -version -o iterate.s
GNU C11 (GCC) version 6.0.0 20151004 (experimental) [trunk revision 228461]
(x86_64-pc-linux-gnu)
        compiled by GNU C version 4.8.3 20141208 [gcc-4_8-branch revision
218481], GMP version 5.1.2, MPFR version 3.1.2, MPC version 1.0
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
GNU C11 (GCC) version 6.0.0 20151004 (experimental) [trunk revision 228461]
(x86_64-pc-linux-gnu)
        compiled by GNU C version 4.8.3 20141208 [gcc-4_8-branch revision
218481], GMP version 5.1.2, MPFR version 3.1.2, MPC version 1.0
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: f102ae58a97e9c99e076c734516f015f
iterate.c: In function 'Iterate':
iterate.c:17:5: internal compiler error: in duplicate_thread_path, at
tree-ssa-threadupdate.c:2446
0xade9af duplicate_thread_path
        /gcc/spec/sb-czerny-head-64/gcc/gcc/tree-ssa-threadupdate.c:2445
0xade9af thread_through_all_blocks(bool)
        /gcc/spec/sb-czerny-head-64/gcc/gcc/tree-ssa-threadupdate.c:2632
0xa3c628 execute
        /gcc/spec/sb-czerny-head-64/gcc/gcc/tree-ssa-dom.c:622
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.


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

* [Bug tree-optimization/67816] [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build
  2015-10-02 10:37 [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build rguenth at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2015-10-05  8:16 ` rguenth at gcc dot gnu.org
@ 2015-10-05  8:23 ` rguenth at gcc dot gnu.org
  2015-10-05  8:26 ` rguenth at gcc dot gnu.org
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-10-05  8:23 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
Yeah, trunk configured with --enable-checking=release --enable-languages=c
--disable-bootstrap reproduces the issue for me.  Scary.


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

* [Bug tree-optimization/67816] [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build
  2015-10-02 10:37 [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build rguenth at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2015-10-05  8:23 ` rguenth at gcc dot gnu.org
@ 2015-10-05  8:26 ` rguenth at gcc dot gnu.org
  2015-10-05  8:35 ` trippels at gcc dot gnu.org
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-10-05  8:26 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
#1  0x0000000000ae7683 in duplicate_thread_path (
    entry=<edge 0x7ffff6a37620 (79 -> 23)>, 
    exit=<edge 0x7ffff6a07658 (58 -> 59)>, region=0x1b68550, n_region=10, 
    region_copy=0x1b6abf0)
    at /space/rguenther/src/svn/trunk/gcc/tree-ssa-threadupdate.c:2445
2445              gcc_assert (i + 1 == n_region
(gdb) p i
$1 = 6
(gdb) p n_region
$2 = 10
(gdb) p region_copy[i + 1]
$3 = <basic_block 0x7ffff6a792d8 (114)>
(gdb) p single_succ_edge (bb)->dest
$4 = <basic_block 0x7ffff6a23c98 (53)>


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

* [Bug tree-optimization/67816] [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build
  2015-10-02 10:37 [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build rguenth at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2015-10-05  8:26 ` rguenth at gcc dot gnu.org
@ 2015-10-05  8:35 ` trippels at gcc dot gnu.org
  2015-10-05  9:01 ` trippels at gcc dot gnu.org
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: trippels at gcc dot gnu.org @ 2015-10-05  8:35 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2015-10-05
                 CC|                            |trippels at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #9 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
A bit further reduced:

int a, c, d, e;
int b[10];
void fn1() {
  int i, f = 0;
  for (;;) {
    i = 0;
    for (; i < a; i++)
      if (c) {
        if (b[i])
          f = 1;
      } else if (b[i])
        f = 0;
    if (f)
      d++;
    while (e)
      ;
  }
}

Confirmed on ppc64le. Only happens with checking=release.


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

* [Bug tree-optimization/67816] [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build
  2015-10-02 10:37 [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build rguenth at gcc dot gnu.org
                   ` (8 preceding siblings ...)
  2015-10-05  8:35 ` trippels at gcc dot gnu.org
@ 2015-10-05  9:01 ` trippels at gcc dot gnu.org
  2015-10-05 15:25 ` law at redhat dot com
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: trippels at gcc dot gnu.org @ 2015-10-05  9:01 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816

--- Comment #10 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Started with r228306.


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

* [Bug tree-optimization/67816] [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build
  2015-10-02 10:37 [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build rguenth at gcc dot gnu.org
                   ` (9 preceding siblings ...)
  2015-10-05  9:01 ` trippels at gcc dot gnu.org
@ 2015-10-05 15:25 ` law at redhat dot com
  2015-10-07  2:26 ` law at redhat dot com
  2015-10-07  2:26 ` law at gcc dot gnu.org
  12 siblings, 0 replies; 14+ messages in thread
From: law at redhat dot com @ 2015-10-05 15:25 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816

--- Comment #12 from Jeffrey A. Law <law at redhat dot com> ---
As I suspected, what's happening is we've got an FSM jump thread path.   After
we register the FSM path DOM discovers that a block embedded in the path has a
control statement with a staticly computable destination.  DOM cleans things up
the obvious way.

That leaves blocks in the FSM path which become unreachable.  That in turn
triggers the checking assert.   The checking assert is a simple sanity check on
the FSM path to detect a case where a block on the path unconditionally
transferred control to another block that was not the next block on the path. 

That assert detects a "shouldn't ever happen case" and is probably totally
obsolete at this point.    I'm much more concerned that this didn't trigger is
a normal development build and that's what I'm focusing my energy on at the
moment.


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

* [Bug tree-optimization/67816] [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build
  2015-10-02 10:37 [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build rguenth at gcc dot gnu.org
                   ` (11 preceding siblings ...)
  2015-10-07  2:26 ` law at redhat dot com
@ 2015-10-07  2:26 ` law at gcc dot gnu.org
  12 siblings, 0 replies; 14+ messages in thread
From: law at gcc dot gnu.org @ 2015-10-07  2:26 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816

--- Comment #13 from Jeffrey A. Law <law at gcc dot gnu.org> ---
Author: law
Date: Wed Oct  7 02:25:57 2015
New Revision: 228559

URL: https://gcc.gnu.org/viewcvs?rev=228559&root=gcc&view=rev
Log:
[PATCH][PR tree-optimization/67816] Fix jump threading when DOM removes
conditionals in jump threading path

        PR tree-optimization/67816
        * tree-ssa-threadupdate.h (remove_jump_threads_including): Renamed
        from remove_jump_threads_starting_at.  Accept an edge rather than
        a basic block.
        * tree-ssa-threadupdate.c (removed_edges): New hash table.
        (remove_jump_threads_including): Note edges that get removed from
        the CFG for later pruning of jump threading paths including them.
        (thread_through_all_blocks): Remove paths which include edges that
        have been removed.
        * tree-ssa-dom.c (optimize_stmt): Call remove_jump_threads_including
        on each outgoing edges when optimizing away a control statement.

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

Added:
    trunk/gcc/testsuite/gcc.c-torture/compile/pr67816.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-ssa-dom.c
    trunk/gcc/tree-ssa-threadupdate.c
    trunk/gcc/tree-ssa-threadupdate.h


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

* [Bug tree-optimization/67816] [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build
  2015-10-02 10:37 [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build rguenth at gcc dot gnu.org
                   ` (10 preceding siblings ...)
  2015-10-05 15:25 ` law at redhat dot com
@ 2015-10-07  2:26 ` law at redhat dot com
  2015-10-07  2:26 ` law at gcc dot gnu.org
  12 siblings, 0 replies; 14+ messages in thread
From: law at redhat dot com @ 2015-10-07  2:26 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67816

Jeffrey A. Law <law at redhat dot com> changed:

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

--- Comment #14 from Jeffrey A. Law <law at redhat dot com> ---
Fixed on trunk.


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

end of thread, other threads:[~2015-10-07  2:26 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-02 10:37 [Bug tree-optimization/67816] New: [6 Regression] ICE in duplicate_thread_path, 186.crafty fails to build rguenth at gcc dot gnu.org
2015-10-02 10:37 ` [Bug tree-optimization/67816] " rguenth at gcc dot gnu.org
2015-10-02 10:53 ` rguenth at gcc dot gnu.org
2015-10-02 11:10 ` mpolacek at gcc dot gnu.org
2015-10-02 12:01 ` rguenther at suse dot de
2015-10-04  7:01 ` rguenther at suse dot de
2015-10-05  8:16 ` rguenth at gcc dot gnu.org
2015-10-05  8:23 ` rguenth at gcc dot gnu.org
2015-10-05  8:26 ` rguenth at gcc dot gnu.org
2015-10-05  8:35 ` trippels at gcc dot gnu.org
2015-10-05  9:01 ` trippels at gcc dot gnu.org
2015-10-05 15:25 ` law at redhat dot com
2015-10-07  2:26 ` law at redhat dot com
2015-10-07  2:26 ` law 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).