From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 0E8AC3854380; Fri, 13 Jan 2023 10:01:49 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0E8AC3854380 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1673604110; bh=QPmNto7qjW8BxYMlsOBbIf0ybxG7q/HpRtaykWFKkEM=; h=From:To:Subject:Date:In-Reply-To:References:From; b=TAsST4xx0wc8USPApE5gdF8Xe8uBPNWBQTud06lgb6O++PKvYFGPU47WY7rwmd9AJ 24wYxmPgumLxYembtDqqy7i2sYkVofEN9+5WreZAHMkFsm4+zzddWHzmG0CWWJql47 MvwUm1qDjJUrPVYVCHHV1QkMxxJGOsJicITVdOjc= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/107209] [13 Regression] ICE: verify_gimple failed (error: statement marked for throw, but doesn't) Date: Fri, 13 Jan 2023 10:01:46 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: ice-on-invalid-code, needs-bisection X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107209 --- Comment #7 from CVS Commits --- The trunk branch has been updated by Richard Sandiford : https://gcc.gnu.org/g:3893c9c0a16832f55d8d0827f50c48a56c52f6e7 commit r13-5137-g3893c9c0a16832f55d8d0827f50c48a56c52f6e7 Author: Richard Biener Date: Fri Jan 13 10:01:32 2023 +0000 aarch64: Don't update EH info when folding [PR107209] The AArch64 folders tried to update EH info on the fly, bypassing the folder's attempts to remove dead EH edges later. This triggered an ICE when folding a potentially-trapping call to a constant. gcc/ PR target/107209 * config/aarch64/aarch64.cc (aarch64_gimple_fold_builtin): Don't update EH info on the fly. gcc/testsuite/ * gcc.target/aarch64/pr107209.c: New test. Co-Authored-By: Richard Biener =