From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 91A18385DC2B; Thu, 25 Jan 2024 15:54:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 91A18385DC2B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1706198060; bh=vY+RO82gHEV55krPxwXLS+BKO4zQK57rmVxiInFjPvM=; h=From:To:Subject:Date:In-Reply-To:References:From; b=es3JfAeUQjcm0g0nmubFnUCduvR0cr0DQeTwH6+zLcsXkxyLyFK1hAD3wsaWDWax/ CB5TvPpfpG7k4wZIj69NBH8hqj0UY1uIs/rnpcd+wOuy8Le8B3MvdWWpwO7VWeO5Mx 4kbSjie5HI4l89hgKszwmbgfw/SZtWHUINizDM5g= From: "acoplan at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/111677] [12/13/14 Regression] darktable build on aarch64 fails with unrecognizable insn due to -fstack-protector changes Date: Thu, 25 Jan 2024 15:54:12 +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.2.0 X-Bugzilla-Keywords: ice-on-valid-code, needs-bisection X-Bugzilla-Severity: normal X-Bugzilla-Who: acoplan at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 12.4 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=3D111677 --- Comment #20 from Alex Coplan --- I think the testcase in #c10 went latent on the 13 branch but the following (reduced from the attachment) still ICEs on the tip of the 13 branch with -Ofast -fopenmp -fstack-protector-strong: typedef struct { long size_z; int width; } dt_bilateral_t; typedef float dt_aligned_pixel_t[4]; #pragma omp declare simd void dt_bilateral_splat(dt_bilateral_t *b) { float *buf; long offsets[8]; for (; b;) { int firstrow; for (int j =3D firstrow; j; j++) for (int i; i < b->width; i++) { dt_aligned_pixel_t contrib; for (int k =3D 0; k < 4; k++) buf[offsets[k]] +=3D contrib[k]; } float *dest; for (int j =3D (long)b; j; j++) { float *src =3D (float *)b->size_z; for (int i =3D 0; i < (long)b; i++) dest[i] +=3D src[i]; } } }=