From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 8B7C8387542A; Wed, 26 Jun 2024 20:20:44 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8B7C8387542A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1719433244; bh=tGLcjHYKSG9ShKkAzW9siBR313X/AeJtsSGpJukH7AE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=ZcmqsmteNFXxcEU480K8fOoJhqjcveiOeW/Uooxmp0ie/Lk3IV3INEf0l0H7XbA5m VbmG5r2ShZb4sIqRXd4dPXxbz0FQk35ilT05c8BrZaEyATp7LHVwHX/9hi/CWc5SAz zL9D3Q/HPHK5CHBkA0v7q2+Acrgd0P0XEk9TJ+ck= From: "slyfox at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/115643] aarch64-w64-mingw32 support today breaks x86_64-w64-mingw32 build cannot represent relocation type BFD_RELOC_64 Date: Wed, 26 Jun 2024 20:20:44 +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: 15.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: slyfox 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: --- 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=3D115643 --- Comment #6 from Sergei Trofimovich --- (In reply to Sergei Trofimovich from comment #5) > Bisected down to r15-1602-ged20feebd9ea31=20 > +#define PE_COFF_EXTERN_DECL_SHOULD_BE_LEGITIMIZED \ > + ix86_cmodel =3D=3D CM_LARGE_PIC || ix86_cmodel =3D=3D CM_MEDIUM_PIC > - if (ix86_cmodel !=3D CM_LARGE_PIC && ix86_cmodel !=3D CM_MEDIUM_PIC) > + if (!PE_COFF_EXTERN_DECL_SHOULD_BE_LEGITIMIZED) > return NULL_RTX; Missing braces around `PE_COFF_EXTERN_DECL_SHOULD_BE_LEGITIMIZED` implementation?=