From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id A937D3858D33; Fri, 22 Dec 2023 18:41:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A937D3858D33 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1703270492; bh=n/DMZpfkLyHH/bn7ofDOnjVut3aZDXqGd/Ywmo55dDQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=yT+uwelo8kQC6NFuSLnAJN5ZwCCJvmhz1GznIdiSVSZvp0Uh6LzlJSbNjVjyqPm9t B96Gyy/pfVfg8dliMLiieHfhif/7aCS07mjD32fd1+zpRIsxR3+8kfH40ivXyAwK2r iH/+G7dftdpazDVhioKhXeADlhAC2Q4XC6z4vhJw= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/113059] [14 regression] fftw fails tests for -O3 -m32 -march=znver2 since r14-6210-ge44ed92dbbe9d4 Date: Fri, 22 Dec 2023 18:41:31 +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: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.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=3D113059 --- Comment #10 from Jakub Jelinek --- (In reply to Florian Weimer from comment #8) > (In reply to Jakub Jelinek from comment #3) > > Seems the package's configure is affected by most likely the modern C > > changes, > > I see > > --- config.h.good 2023-12-22 17:47:44.615207332 +0100 > > +++ config.h.bad 2023-12-22 17:46:42.304068624 +0100 > > @@ -37,7 +37,7 @@ > > /* #undef F77_FUNC_ */ > >=20=20 > > /* Define if F77_FUNC and F77_FUNC_ are equivalent. */ > > -/* #undef F77_FUNC_EQUIV */ > > +#define F77_FUNC_EQUIV 1 > >=20=20 > > /* Define if F77 and FC dummy `main' functions are identical. */ > > /* #undef FC_DUMMY_MAIN_EQ_F77 */ > > @@ -404,7 +404,7 @@ > >=20=20 > > /* Include g77-compatible wrappers in addition to any other Fortran > > wrappers. > > */ > > -/* #undef WITH_G77_WRAPPERS */ > > +#define WITH_G77_WRAPPERS 1 > >=20=20 > > /* Use our own aligned malloc routine; mainly helpful for Windows syst= ems > > lacking aligned allocation system-library routines. */ > > diff in config.h between my system gcc 12 and gcc 14 snapshot. > > But that isn't the reason for the failure. >=20 > I don't see a different to system gcc 13. It has F77_FUNC_EQUIV and > WITH_G77_WRAPPERS set as well. Do you see this for all build variants of > fftw? Ah, seems I don't have system gfortran installed, which is probably the cau= se of the config.h difference. Sorry for the false alarm.=