From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 8552C3858D20; Sat, 15 Apr 2023 17:03:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8552C3858D20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1681578215; bh=aBDgPyTzgz2aFlY3MXcXT9VRQarfopryo5p3Zf1V17E=; h=From:To:Subject:Date:In-Reply-To:References:From; b=iBGq1AzdBjb3jgu55NTtyVNKwSsc76eK+WuKbtZBV4eSz8EIPg13mzF+dZCmcGlNu xVPxF/R8n2ywUzjpceBHiZb5uaG1OJaZBPDk0tUg/zHZ0LyFNaN13bzH/Slge/FhU6 WHpvzu7LcZKh6cb5xUBOAEXfcGYONX5qukJarlnc= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/104989] [10/11 Regression] ICE in rtl_verify_bb_insns, at cfgrtl.cc:2797 (error: flow control insn inside a basic block) Date: Sat, 15 Apr 2023 17:03:27 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 12.0 X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code 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: 10.5 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=3D104989 --- Comment #7 from CVS Commits --- The master branch has been updated by John David Anglin : https://gcc.gnu.org/g:4f1c5e54d782b26304b0095ffb3ceb4c92c3c78d commit r13-7194-g4f1c5e54d782b26304b0095ffb3ceb4c92c3c78d Author: John David Anglin Date: Sat Apr 15 17:02:44 2023 +0000 Fix handling of large arguments passed by value. 2023-04-15 John David Anglin gcc/ChangeLog: PR target/104989 * config/pa/pa-protos.h (pa_function_arg_size): Update prototyp= e. * config/pa/pa.cc (pa_function_arg): Return NULL_RTX if argument size is zero. (pa_arg_partial_bytes): Don't call pa_function_arg_size twice. (pa_function_arg_size): Change return type to int. Return zero for arguments larger than 1 GB. Update comments.=