From: Aldy Hernandez Date: Tue, 2 Sep 2014 15:09:54 +0000 (+0000) Subject: Makefile.in (TAGS): Handle constructs in common.opt, rtl.def, tree.def, and gimple.def X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4e2b2eeec93479e9a6ecde090e7b748fabcae107;p=gcc.git Makefile.in (TAGS): Handle constructs in common.opt, rtl.def, tree.def, and gimple.def * Makefile.in (TAGS): Handle constructs in common.opt, rtl.def, tree.def, and gimple.def From-SVN: r214822 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a59c8a4cd8c..910c04dba57 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 4763e10a453..63124f85e16 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) # -----------------------------------------------------