From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 49261 invoked by alias); 12 Oct 2017 05:19:51 -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 19742 invoked by uid 89); 12 Oct 2017 05:16:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM autolearn=no version=3.3.2 spammy= X-HELO: mail-it0-f43.google.com Received: from mail-it0-f43.google.com (HELO mail-it0-f43.google.com) (209.85.214.43) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 12 Oct 2017 05:16:53 +0000 Received: by mail-it0-f43.google.com with SMTP id j140so5485160itj.1 for ; Wed, 11 Oct 2017 22:16:50 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=skju1nbOocjypFFgeo8/8NbiR7Jb0Q8ZYnFvyZ4VFGo=; b=pkpvXYlGSKn76RzZppZAuUd2CDdgGvO+HM0+jA2xrFSNNNOnyjvHNji1vK4/gELEwt UJSQVII9Oqr+aBCnwrspGwPWnmXIlZgbn0k4kEhdqgad7gG6/zNG6ufkXbjukprd6hqu RxCr3VlfARBHr2YD6kh73bW7sfl/qT5f2NZfJOhXVFhQZ/asB6l8T/2eElJ+zwPmjNfL Z6yLkpqNo4YzGsrD7s4M+VexZFMrx8KW+a71K7VzJmJePClfi+uomYElSrc5fl6TJEnW lbzCbvOvuRuqEwRECXV5aKcq9nHPyFr1JHChhCdS/4BaWRYaSTz7snY0GKYw+z+aVq00 40SQ== X-Gm-Message-State: AMCzsaWVf0dOkfWuVYF9YmkvHD6M8WauaGYRcCAAMrtiCUekFwS2u9fa GQ2ns3L4ZrsSiIfhlCiTJXHAnpJKMYedVgCGOj6Hiw== X-Google-Smtp-Source: AOwi7QA5V3Eqk0BTgEhI/KGXXoWQO6I6nWKdd2ytnvDn8eHZ81aWCdnSrC7x4uhgmIkBm5es/J7cCJFT5ll6EodMFKE= X-Received: by 10.36.164.75 with SMTP id v11mr1845375iti.33.1507785408253; Wed, 11 Oct 2017 22:16:48 -0700 (PDT) MIME-Version: 1.0 Received: by 10.107.170.26 with HTTP; Wed, 11 Oct 2017 22:16:27 -0700 (PDT) In-Reply-To: <1507219711-60081-1-git-send-email-dmalcolm@redhat.com> References: <1506434179-2736-3-git-send-email-dmalcolm@redhat.com> <1507219711-60081-1-git-send-email-dmalcolm@redhat.com> From: Jason Merrill Date: Thu, 12 Oct 2017 05:23:00 -0000 Message-ID: Subject: Re: [PATCH 2/2] C/C++: add fix-it hints for various missing symbols (v3) To: David Malcolm Cc: gcc-patches List Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2017-10/txt/msg00722.txt.bz2 On Thu, Oct 5, 2017 at 12:08 PM, David Malcolm wrote: > Here's a slight update to this patch, since v2 was made invalid by > r253411 ("C: underline parameters in mismatching function calls"). > > Both v2 and r253411 added code to c-parser.c/h to track the location_t > of the last consumed token (although I somehow managed to name the new > field in c_parser differently between the two versions...) > > This version (v3) is the same as v2, but removes the copy of the > above code, updating the usage sites to use the field name from > r253411. > > Successfully bootstrapped & regrtested on x86_64-pc-linux-gnu > in conjunction with patch 1 of the kit: > https://gcc.gnu.org/ml/gcc-patches/2017-09/msg01745.html > > OK for trunk? OK. Jason