From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7092 invoked by alias); 5 May 2014 13:49:24 -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 6863 invoked by uid 55); 5 May 2014 13:49:20 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/60453] ICE when building chromium with -O2 and graphite Date: Mon, 05 May 2014 13:49: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: 4.8.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: RESOLVED 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: 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: 2014-05/txt/msg00278.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60453 --- Comment #5 from Richard Biener --- Author: rguenth Date: Mon May 5 13:48:42 2014 New Revision: 210070 URL: http://gcc.gnu.org/viewcvs?rev=210070&root=gcc&view=rev Log: 2014-05-05 Richard Biener Backport from mainline 2014-04-23 Richard Biener PR middle-end/60895 * tree-inline.c (declare_return_variable): Use mark_addressable. * g++.dg/torture/pr60895.C: New testcase. 2014-04-07 Richard Biener PR middle-end/60750 * tree-ssa-operands.c (maybe_add_call_vops): Also add VDEFs for noreturn calls. * tree-cfgcleanup.c (fixup_noreturn_call): Do not remove VDEFs. * g++.dg/torture/pr60750.C: New testcase. * gcc.dg/tree-ssa/20040517-1.c: Adjust. 2014-04-14 Richard Biener PR tree-optimization/59817 PR tree-optimization/60453 * graphite-scop-detection.c (graphite_can_represent_scev): Complete recursion to catch all CHRECs in the scalar evolution and restrict the predicate for the remains appropriately. * gfortran.dg/graphite/pr59817.f: New testcase. * gcc.dg/graphite/pr59817-1.c: Likewise. * gcc.dg/graphite/pr59817-2.c: Likewise. 2014-04-17 Richard Biener PR tree-optimization/60836 * tree-vect-loop.c (vect_create_epilog_for_reduction): Force initial PHI args to be gimple values. * g++.dg/vect/pr60836.cc: New testcase. Added: branches/gcc-4_8-branch/gcc/testsuite/g++.dg/torture/pr60750.C branches/gcc-4_8-branch/gcc/testsuite/g++.dg/torture/pr60895.C branches/gcc-4_8-branch/gcc/testsuite/g++.dg/vect/pr60836.cc branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/graphite/pr59817-1.c branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/graphite/pr59817-2.c branches/gcc-4_8-branch/gcc/testsuite/gfortran.dg/graphite/pr59817.f Modified: branches/gcc-4_8-branch/gcc/ChangeLog branches/gcc-4_8-branch/gcc/graphite-scop-detection.c branches/gcc-4_8-branch/gcc/testsuite/ChangeLog branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/tree-ssa/20040517-1.c branches/gcc-4_8-branch/gcc/tree-cfgcleanup.c branches/gcc-4_8-branch/gcc/tree-inline.c branches/gcc-4_8-branch/gcc/tree-ssa-operands.c branches/gcc-4_8-branch/gcc/tree-vect-loop.c