From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 88295 invoked by alias); 21 Sep 2015 09:56:36 -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 88135 invoked by uid 55); 21 Sep 2015 09:56:31 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug ipa/66793] [5 Regression] ICE at -Os and above on x86_64-linux-gnu (verify_flow_info failed) Date: Mon, 21 Sep 2015 09:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: ipa X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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-09/txt/msg01669.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66793 --- Comment #5 from Richard Biener --- Author: rguenth Date: Mon Sep 21 09:55:57 2015 New Revision: 227961 URL: https://gcc.gnu.org/viewcvs?rev=227961&root=gcc&view=rev Log: 2015-09-21 Richard Biener Backport from mainline 2015-07-08 Richard Biener PR tree-optimization/66793 * gimple-ssa-isolate-paths.c (insert_trap_and_remove_trailing_statemen): Properly split the block after stmts ending it. * gcc.dg/torture/pr66793.c: New testcase. 2015-08-05 Richard Biener PR tree-optimization/67055 * tree-ssa-ccp.c (fold_builtin_alloca_with_align): Handle NULL gimple_block. * g++.dg/torture/pr67055.C: New testcase. 2015-08-05 Richard Biener PR tree-optimization/67121 * tree-if-conv.c (combine_blocks): Clear range-info produced by stmts no longer executed conditionally. * gcc.dg/torture/pr67121.c: New testcase. 2015-09-16 Richard Biener PR middle-end/67271 * fold-const.c (native_encode_expr): Bail out on bogus offsets. * gcc.dg/pr67271.c: New testcase. 2015-07-22 Richard Biener PR tree-optimization/66952 * tree-ssa-ifcombine.c (pass_tree_ifcombine::execute): For blocks we end up executing unconditionally reset all SSA info such as range and alignment. * tree-ssanames.h (reset_flow_sensitive_info): Declare. * tree-ssanames.c (reset_flow_sensitive_info): New function. * gcc.dg/torture/pr66952.c: New testcase. 2015-09-15 Richard Biener PR tree-optimization/67470 * tree-ssa-loop-im.c (execute_sm_if_changed): Preserve PHI structure for PHI hoisting by inserting a forwarder block if appropriate. * gcc.dg/torture/pr67470.c: New testcase. Added: branches/gcc-5-branch/gcc/testsuite/g++.dg/torture/pr67055.C branches/gcc-5-branch/gcc/testsuite/gcc.dg/pr67271.c branches/gcc-5-branch/gcc/testsuite/gcc.dg/torture/pr66793.c branches/gcc-5-branch/gcc/testsuite/gcc.dg/torture/pr66952.c branches/gcc-5-branch/gcc/testsuite/gcc.dg/torture/pr67121.c branches/gcc-5-branch/gcc/testsuite/gcc.dg/torture/pr67470.c Modified: branches/gcc-5-branch/gcc/ChangeLog branches/gcc-5-branch/gcc/fold-const.c branches/gcc-5-branch/gcc/gimple-ssa-isolate-paths.c branches/gcc-5-branch/gcc/testsuite/ChangeLog branches/gcc-5-branch/gcc/tree-if-conv.c branches/gcc-5-branch/gcc/tree-ssa-ccp.c branches/gcc-5-branch/gcc/tree-ssa-ifcombine.c branches/gcc-5-branch/gcc/tree-ssa-loop-im.c branches/gcc-5-branch/gcc/tree-ssanames.c branches/gcc-5-branch/gcc/tree-ssanames.h