From patchwork Thu Sep 4 19:23:19 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aldy Hernandez X-Patchwork-Id: 385992 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 7D1AD140110 for ; Fri, 5 Sep 2014 05:23:32 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:subject:content-type; q= dns; s=default; b=AJpztZ/+jjO+QEfDF5cyeBAJxWcqBsg0TTzhfeW35HpMGh IugY0wmgJ5PgWOIQqUm6LnRFsTvxol6t39gfVml2aE7e56zPZB9WdVUE8v2+OUxQ svnfV0NJo29yGJOtxwyXUsU8+nf7G48mEADxXHdh5MNNjI96vAZYcEBmXYFhg= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:subject:content-type; s= default; bh=LJtEpfMbr69C6Rl4eSF5RYf82lQ=; b=Hpvku7mbMgwl32Pjmrv7 FRqZGjjC9kG1xCSPunhpanm8jIxrxQCg2io9TvdjWgKlyxjeJcfpDqdeS3J3dOLv d5sGXD4OSis23fK4+IZtpXw5xbsMzCUkzKM/AAokqrRxTvdYTD1K6lgdEE7KnKeN 35oi+WTe1WKAmG5PA7ben7s= Received: (qmail 12197 invoked by alias); 4 Sep 2014 19:23:23 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 12183 invoked by uid 89); 4 Sep 2014 19:23:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_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; Thu, 04 Sep 2014 19:23:22 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s84JNKTt028821 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Thu, 4 Sep 2014 15:23:21 -0400 Received: from reynosa.quesejoda.com (vpn-51-157.rdu2.redhat.com [10.10.51.157]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s84JNJDZ015473 for ; Thu, 4 Sep 2014 15:23:20 -0400 Message-ID: <5408BC27.3000103@redhat.com> Date: Thu, 04 Sep 2014 12:23:19 -0700 From: Aldy Hernandez User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.7.0 MIME-Version: 1.0 To: gcc-patches Subject: [patch] [committed] Add TAGS for timevar.def Dunno, if I'm allowed to make calls on what an obvious patch is, considering I completely broke trunk with my last commit to the debug-early branch, but I'll take my chances... Yet another *.def file that needs handling in the TAGS file. Committed to trunk as obvious. Aldy commit be2a57c0df761552944acacacf4c43b1e36f2f2c Author: Aldy Hernandez Date: Thu Sep 4 10:35:20 2014 -0700 * Makefile.in (TAGS): Handle constructs in timevar.def. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 63124f8..df879b1 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3806,6 +3806,7 @@ TAGS: lang.tags etags -o TAGS.sub c-family/*.h c-family/*.c *.h *.c *.cc \ --language=none --regex="/\(char\|unsigned int\|int\|bool\|void\|HOST_WIDE_INT\|enum [A-Za-z_0-9]+\) [*]?\([A-Za-z_0-9]+\)/\2/" common.opt \ --language=none --regex="/\(DEF_RTL_EXPR\|DEFTREECODE\|DEFGSCODE\).*(\([A-Za-z_0-9]+\)/\2/" rtl.def tree.def gimple.def \ + --language=none --regex="/DEFTIMEVAR (\([A-Za-z_0-9]+\)/\1/" timevar.def \ ; \ etags --include TAGS.sub $$incs)