From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 98B053857011; Sat, 8 Aug 2020 09:09:48 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 98B053857011 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1596877788; bh=4pEQIIX6PKSL7MYM/T0/z+NeRZ+16GVgkLiGXmxlESs=; h=From:To:Subject:Date:In-Reply-To:References:From; b=O2+nWLPlWuNWYl8NsEwq/9rK3VL/oqjUBPqzhu7TeM1uLZMeF5Rbtn9iXmvgFc02a MISIRUvLPqR6FKUNAs3M+Jssw6SDqjlWzrXMzYgK+TUa5S5lRg2jYdMS9+kszmEFUQ gbq5+cPNp/GIYR8Gppkf16Z6E+0eP3Tdyy2lhiTQ= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/96424] ICE: verify_flow_info failed (error: wrong outgoing edge flags at end of bb 23); or ICE: Segmentation fault (in expand_omp_for_init_vars/contains_struct_check) Date: Sat, 08 Aug 2020 09:09:48 +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: 11.0 X-Bugzilla-Keywords: openmp X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jakub 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-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Aug 2020 09:09:48 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D96424 --- Comment #2 from CVS Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:87d6dae308d604bad111b1c0bfea7835888eed8d commit r11-2614-g87d6dae308d604bad111b1c0bfea7835888eed8d Author: Jakub Jelinek Date: Sat Aug 8 11:07:09 2020 +0200 openmp: Avoid floating point comparison at the end of bb with -fnon-call-exceptions The following testcase ICEs with -fexceptions -fnon-call-exceptions bec= ause in that mode floating point comparisons should not be done at the end o= f bb in GIMPLE_COND. Fixed by forcing it into a bool SSA_NAME and comparing that against false. 2020-08-08 Jakub Jelinek PR tree-optimization/96424 * omp-expand.c: Include tree-eh.h. (expand_omp_for_init_vars): Handle -fexceptions -fnon-call-exceptions by forcing floating point comparison into a bool temporary. * c-c++-common/gomp/pr96424.c: New test.=