From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 90846 invoked by alias); 4 Sep 2019 16:51:14 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 90838 invoked by uid 89); 4 Sep 2019 16:51:14 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-8.6 required=5.0 tests=AWL,BAYES_00,KAM_NUMSUBJECT,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=no version=3.3.1 spammy=H*f:sk:100b17d, H*f:sk:pvyOs7w, H*r:ip*209.85.167.67, HX-Spam-Relays-External:209.85.167.67 X-HELO: mail-lf1-f67.google.com Received: from mail-lf1-f67.google.com (HELO mail-lf1-f67.google.com) (209.85.167.67) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 04 Sep 2019 16:51:13 +0000 Received: by mail-lf1-f67.google.com with SMTP id j4so16504539lfh.8 for ; Wed, 04 Sep 2019 09:51:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=iKROaz7dwK9oz5Sgc/0x9a/EjE5I3tTDMDeqGzunfqk=; b=GruvuK8+T4n1zAJ7tkGCRmm4KHxDF50DNBqj5cCK7nnAau2QzZC4XLD8eyxU+yNO7Z 59uRZFQHrCeFn92JeAos7eKjndZ07SgTlEiZc+4YK3hvOTKzI9ItCIekUOWXCBZW5CCq Ou0a4c2Vck0LGHDgeP1V23LPuhceW9lwT+Z1t7ilZzwu/p48Bgf06X7Q/WL36jlszfRj 2VKSxmVad4t8oChqidzl3o8RXbEq/dcp8kU5+UMQ7xDp8/HqPXPKDwhwwMoTgm/D02a6 2h3DSXaZ73zjWQCUuJEiNPsLrFOoSx2JfVK4qmaKSZROjgYFmZYT0BUFh6SrqfxOHIW1 ALHA== MIME-Version: 1.0 References: <100b17d1-f02c-7bdd-b60b-8451c5e3f2a9@redhat.com> In-Reply-To: <100b17d1-f02c-7bdd-b60b-8451c5e3f2a9@redhat.com> From: Prathamesh Kulkarni Date: Wed, 04 Sep 2019 16:51:00 -0000 Message-ID: Subject: Re: PR78736 To: Jeff Law Cc: gcc Patches , "Joseph S. Myers" Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2019-09/txt/msg00211.txt.bz2 On Wed, 4 Sep 2019 at 01:22, Jeff Law wrote: > > On 8/28/19 8:55 PM, Prathamesh Kulkarni wrote: > > Hi, > > This is a rebased patch on trunk for PR78736. The last time, it got > > stuck, because of warning issues with libgfortran, for which I filed > > PR91593. The patch relegates the warning to Wextra instead, which only > > triggers (non-fatal) warnings in libgfortran/io/transfer.c, and > > survives bootstrap+test on x86_64-unknown-linux-gnu. (Also IIRC, Wall > > triggered several instances of the warning with allmodconfig kernel > > build last time). > > Is the patch OK to commit ? > > > > Thanks, > > Prathamesh > > > > > > pr78736-v2-1.txt > > > > 2019-08-29 Prathamesh Kulkarni > > > > * doc/invoke.texi: Document -Wenum-conversion. > > * c-family/c.opt (Wenum-conversion): New option. > > * c/c-typeck.c (convert_for_assignment): Handle Wenum-conversion. > > > > testsuite/ > > * gcc.dg/Wenum-conversion.c: New test-case. > OK. I'd be nice to have a note on PR91593 Thanks, committed as r275376. Thanks, Prathamesh > > Jeff