From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 1FE753858C2C; Tue, 24 Oct 2023 12:48:12 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1FE753858C2C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1698151692; bh=H/gq8r2KmwwYPH2Pf/dLYOtvOTWE42vkVEiSRlNve3U=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Ak3iGhGMrwbJ9pfESMyA03mQQOVJb/dC2ygR5ALwdZOhjNmU2D+dcpI/eNNcIiHV2 E9oGpcazrWdzAiffKiXI0pOueuXVJx98sgbj67U65T7yU6GcQd8ErjQdtwKPr1glrG mIZnviFRdHa5lz4Wm5gVj00xQ3otoqEK+jMObTq8= From: "costamagnagianfranco at yahoo dot it" 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: Tue, 24 Oct 2023 12:48:11 +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 X-Bugzilla-Severity: normal X-Bugzilla-Who: costamagnagianfranco at yahoo dot it X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 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 #8 from Gianfranco --- reduced testcase: typedef struct { int width } dt_bilateral_t; typedef dt_aligned_pixel_t[4]; #pragma omp declare simd void dt_bilateral_splat(dt_bilateral_t *b) { int oy =3D b; float *buf; long offsets[8]; for (int slice; slice < b; slice++) { 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, *src =3D oy; for (int i =3D 0; i < oy; i++) dest[i] +=3D src[i]; } } removing openmp, fstack-protector-strong or ffast-math works.=