From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lug-owl.de (lug-owl.de [IPv6:2a03:4000:10:469::]) by sourceware.org (Postfix) with ESMTPS id 3D94C3858D35 for ; Wed, 15 Feb 2023 10:02:04 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 3D94C3858D35 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=lug-owl.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=lug-owl.de Received: by lug-owl.de (Postfix, from userid 1001) id 9C45D42050; Wed, 15 Feb 2023 11:02:02 +0100 (CET) Date: Wed, 15 Feb 2023 11:02:02 +0100 From: Jan-Benedict Glaw To: "Jose E. Marchesi" Cc: gcc-patches@gcc.gnu.org Subject: [patch] bpf: Fix double whitespace warning Message-ID: <20230215100202.lrjn2dpk2xuwht6a@lug-owl.de> References: <20230117162508.74789-1-jose.marchesi@oracle.com> <20230128141255.nps3jzmcfmp2df3z@lug-owl.de> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pepsecmo7bfi75cu" Content-Disposition: inline In-Reply-To: <20230128141255.nps3jzmcfmp2df3z@lug-owl.de> X-Operating-System: Linux chamaeleon 5.14.0-0.bpo.2-amd64 X-gpg-fingerprint: 250D 3BCF 7127 0D8C A444 A961 1DBD 5E75 8399 E1BB X-gpg-key: wwwkeys.de.pgp.net X-Echelon-Enable: howto poison arsenous mail psychological biological nuclear warfare test the bombastical terror of flooding the spy listeners explosion sex drugs and rock'n'roll X-TKUeV: howto poison arsenous mail psychological biological nuclear warfare test the bombastical terror of flooding the spy listeners explosion sex drugs and rock'n'roll X-message-flag: Please send plain text messages only. Do not send HTML emails. Thank you. User-Agent: NeoMutt/20170113 (1.7.2) X-Spam-Status: No, score=-9.9 required=5.0 tests=BAYES_00,GIT_PATCH_0,KAM_DMARC_STATUS,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: --pepsecmo7bfi75cu Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi! Since a recent commit, the BPF target produces a new warning due to two consecutive non-quoted spaces in a message. This'll fix it: gcc/ * config/bpf/bpf.cc (bpf_option_override): Fix doubled space. Ok? MfG, JBG diff --git a/gcc/config/bpf/bpf.cc b/gcc/config/bpf/bpf.cc index b268801d00c..d8693f8cfbe 100644 --- a/gcc/config/bpf/bpf.cc +++ b/gcc/config/bpf/bpf.cc @@ -258,7 +258,7 @@ bpf_option_override (void) { inform (input_location, "%<-fstack-protector%> does not work " - " on this architecture"); + "on this architecture"); flag_stack_protect =3D 0; } } --=20 --pepsecmo7bfi75cu Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iF0EABECAB0WIQQlDTvPcScNjKREqWEdvV51g5nhuwUCY+ytmgAKCRAdvV51g5nh u0ERAJ98oFG1CybJlpc6qKCglYRErFZlhQCfeVausEuwU3bewYsg7klnVCSAK6U= =tpMF -----END PGP SIGNATURE----- --pepsecmo7bfi75cu--