From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 293903858D33; Mon, 19 Feb 2024 21:45:36 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 293903858D33 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1708379136; bh=gz9NMfHb/1CNli4vorjg8frBkmVbox0BfbWSInEymPE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Ktz+NEHo8HtYEXfoZu6OkdgbXwLnky8EIAfxh4kSCBzhnf3Dvc4BXis/WCl/jr53H 2Wmg6pcnQrTwep5cOBgxMVOJCoz0+e7+s+K0Z+VapaiYpSzbBxfREfZXrqU1DI0Pc9 LXi2+H1j8dJN17jVS6gRA7j0fFGL4Yigi5uQsmSk= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/113995] ICE: in change_address_1, at emit-rtl.cc:2299 with [[arm::streaming_compatible]] and -march=armv9-a+sve -finstrument-functions -fstack-clash-protection Date: Mon, 19 Feb 2024 21:45:35 +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: 14.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: 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: everconfirmed bug_status cf_reconfirmed_on 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=3D113995 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Status|UNCONFIRMED |NEW Last reconfirmed| |2024-02-19 --- Comment #1 from Andrew Pinski --- Confirmed. You don't need -finstrument-functions really, just a function call like: ``` void f(); void svadd_u8_x(__SVUint8_t) [[arm::streaming_compatible]] { f(); } ```=