From: aldyh Date: Tue, 2 Sep 2014 15:09:54 +0000 (+0000) Subject: * Makefile.in (TAGS): Handle constructs in common.opt, rtl.def, X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=023cabf82b771650129be71914e98d919434f7c8;p=thirdparty%2Fgcc.git * Makefile.in (TAGS): Handle constructs in common.opt, rtl.def, tree.def, and gimple.def git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@214822 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a59c8a4cd8c7..910c04dba579 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-09-02 Aldy Hernandez + + * Makefile.in (TAGS): Handle constructs in common.opt, rtl.def, + tree.def, and gimple.def + 2014-09-02 Jakub Jelinek Balaji V. Iyer Igor Zamyatin diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 4763e10a4531..63124f85e164 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3803,7 +3803,10 @@ TAGS: lang.tags incs="$$incs --include $$dir/TAGS.sub"; \ fi; \ done; \ - etags -o TAGS.sub c-family/*.h c-family/*.c *.h *.c *.cc; \ + 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 \ + ; \ etags --include TAGS.sub $$incs) # -----------------------------------------------------