From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 50215 invoked by alias); 28 Oct 2015 18:49:24 -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 49588 invoked by uid 89); 28 Oct 2015 18:49:24 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.5 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 28 Oct 2015 18:49:23 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 38EADC0B5903 for ; Wed, 28 Oct 2015 18:49:22 +0000 (UTC) Received: from [10.10.116.45] (ovpn-116-45.rdu2.redhat.com [10.10.116.45]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t9SInLme024719 for ; Wed, 28 Oct 2015 14:49:21 -0400 To: gcc-patches List From: Jason Merrill Subject: RFA (Makefiles): PATCH to include libcpp and libiberty in GCC etags Message-ID: <563118B1.50001@redhat.com> Date: Wed, 28 Oct 2015 18:53:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------060207000706090308030705" X-SW-Source: 2015-10/txt/msg03098.txt.bz2 This is a multi-part message in MIME format. --------------060207000706090308030705 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-length: 395 Periodically I try to use M-. to pull up a function from libcpp and am frustrated that it doesn't work. This patch fixes that, and throws in libiberty for good measure. I also considered using --include for the TAGS files in those directories, but that would require people to 'make TAGS' separately in those directories for it to work, so I decided to go this way instead. OK for trunk? --------------060207000706090308030705 Content-Type: text/x-patch; name="tags.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="tags.patch" Content-length: 538 commit 9f68b2e2d4ccd5f9522ac33e42882fa2e60332a3 Author: Jason Merrill Date: Wed Oct 28 13:29:32 2015 -0400 comment diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index 2745b40..a37e516 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -23476,6 +23476,7 @@ do_auto_deduction (tree type, tree init, tree auto_node, } else { + // multiple autos: walk all autos and replace/collect them into parms tree parms = build_tree_list (NULL_TREE, type); tree tparms = make_tree_vec (1); int val; --------------060207000706090308030705--