From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi1-x230.google.com (mail-oi1-x230.google.com [IPv6:2607:f8b0:4864:20::230]) by sourceware.org (Postfix) with ESMTPS id 633803865460 for ; Tue, 6 Jul 2021 20:15:33 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 633803865460 Received: by mail-oi1-x230.google.com with SMTP id l21so692690oig.3 for ; Tue, 06 Jul 2021 13:15:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=Y5VeMcm0ZKAS8qgCbDOC7rjhE8yJxVaehhZwwz0eYEk=; b=L1UeT3X6We1mTG21RAnhNICQXYDjUIOoTJ3WlpQPia2b6UQTKRgI/QsW0TsNccc5m9 uqzsQ8JSeQZ/e7qQCt7FJ+9CpjJ5rkJJW+bVPDhzGaL4+MYjHsaCLYnatZgVB54OtyD1 Je71pRuTRC1zkR37LXrUMOMdKPdUp7BFGOLJnGoQed1/GbCYxoevYaWKvMJxNBOZLYzB 2uIs1BgrVP+2VczRYUm4FBwEflC1qVYfcOtZ9R00IpOqe3ojp3Et13bBxhqLGqAbLABi CRRdFb3uWfHp3xO6QeextUNwhnDJjSvANYSoTpHW6iAe9PXWwLu2qXr7x/81pGrCfL3A aMNQ== X-Gm-Message-State: AOAM531GdRFUoL5gYJUlHfUXEAL0z+hVMWVmpjkRLR6oQ5QIHsfNgL9I Gu2l8lVsDV2l9klYn4K5Jz02RAboOko= X-Google-Smtp-Source: ABdhPJxwG7mwnrchmiYxS7e4brBDJmg0orvshZsKzesz+aIn1k6ska7g9Y/lCi3TpwYjb5aT7bG0ug== X-Received: by 2002:a54:4f97:: with SMTP id g23mr1808519oiy.53.1625602532697; Tue, 06 Jul 2021 13:15:32 -0700 (PDT) Received: from [192.168.0.41] (75-166-102-22.hlrn.qwest.net. [75.166.102.22]) by smtp.gmail.com with ESMTPSA id o17sm3615574oie.56.2021.07.06.13.15.32 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Tue, 06 Jul 2021 13:15:32 -0700 (PDT) Subject: Re: [PATCH 4/4] remove %G and %K support from pretty printer and -Wformat (PR 98512) To: David Malcolm , gcc-patches References: <2e49b6c6-a403-a207-c41e-58f78df96b84@gmail.com> <945093c7-de5e-0350-6030-e4e79ea41161@gmail.com> <5aff247f-dfcb-cecf-e07e-b5fca877f911@gmail.com> <99873677d1c64cdd24a732b966cd7a12ce25c1c0.camel@redhat.com> From: Martin Sebor Message-ID: <52ceaa33-eafa-9fd1-daa6-8e59bfbfb17c@gmail.com> Date: Tue, 6 Jul 2021 14:15:31 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.2.2 MIME-Version: 1.0 In-Reply-To: <99873677d1c64cdd24a732b966cd7a12ce25c1c0.camel@redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jul 2021 20:15:34 -0000 On 6/30/21 5:38 PM, David Malcolm wrote: > On Thu, 2021-06-10 at 17:30 -0600, Martin Sebor wrote: >> This final diff removes the handlers for %G and %K from the pretty >> printer and the support for the directives from c-format.c so that >> using them will be diagnosed. > > I think this is OK once the other patches in the kit are approved. > > Presumably if a new GCC tries to compile an older GCC that uses these > codes, we'll get warnings about them, but IIRC those are ignored in the > 1st stage of the bootstrap, right? Yes, I believe so. Sorry for the delay in responding, or if I already answered the question. I'm not sure which. I have committed this in r12-2089. Thanks Martin