From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 54657 invoked by alias); 11 May 2015 10:06:09 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 54585 invoked by uid 48); 11 May 2015 10:06:04 -0000 From: "juergen.reuter at desy dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/58586] ICE with derived type with allocatable component passed by value Date: Mon, 11 May 2015 10:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 4.8.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: juergen.reuter at desy dot de X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-05/txt/msg00821.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D58586 --- Comment #7 from J=C3=BCrgen Reuter --- Hm, ok, these are not just in a single file, cannot promise that I will be = able to look into them. :( >>From gcc-bugs-return-485982-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon May 11 10:12:20 2015 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 66882 invoked by alias); 11 May 2015 10:12:19 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 66833 invoked by uid 48); 11 May 2015 10:12:16 -0000 From: "mpolacek at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/66101] New: [5/6 Regression] internal compiler error: in verify_loop_structure, at cfgloop.c:1662 Date: Mon, 11 May 2015 10:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mpolacek at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-05/txt/msg00822.txt.bz2 Content-length: 1763 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D66101 Bug ID: 66101 Summary: [5/6 Regression] internal compiler error: in verify_loop_structure, at cfgloop.c:1662 Product: gcc Version: 6.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: mpolacek at gcc dot gnu.org Target Milestone: --- $ ./cc1 -quiet -O2 o.c=20 o.c: In function =E2=80=98bar=E2=80=99: o.c:8:5: warning: implicit declaration of function =E2=80=98longjmp=E2=80=99 [-Wimplicit-function-declaration] longjmp (); ^ o.c: In function =E2=80=98foo=E2=80=99: o.c:16:3: warning: implicit declaration of function =E2=80=98_setjmp=E2=80= =99 [-Wimplicit-function-declaration] _setjmp (); ^ o.c:29:1: error: size of loop 1 should be 3, not 5 } ^ o.c:29:1: internal compiler error: in verify_loop_structure, at cfgloop.c:1= 662 0x8437cc verify_loop_structure() /home/marek/src/gcc/gcc/cfgloop.c:1662 0xb9b354 loop_optimizer_init(unsigned int) /home/marek/src/gcc/gcc/loop-init.c:124 0xc872fa execute /home/marek/src/gcc/gcc/predict.c:3056 Please submit a full bug report, with preprocessed source if appropriate. Please include the complete backtrace with any bug report. See for instructions. int a, c, d, e; int bar () { int b =3D *(long *) 7 =3D=3D 5 ? : 0; if (a || a > b) longjmp (); return 1; } void foo () { long f; _setjmp (); for (; d; c++) switch (c) case 0: { f =3D bar () >> 1; if (e) goto L; if (bar () >> 1) goto L; } L: ; } >>From gcc-bugs-return-485984-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon May 11 10:12:41 2015 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 73596 invoked by alias); 11 May 2015 10:12:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 73457 invoked by uid 48); 11 May 2015 10:12:37 -0000 From: "mpolacek at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/66101] [5/6 Regression] internal compiler error: in verify_loop_structure, at cfgloop.c:1662 Date: Mon, 11 May 2015 10:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mpolacek at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.2 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: target_milestone Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-05/txt/msg00824.txt.bz2 Content-length: 292 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66101 Marek Polacek changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |5.2