From: Aldy Hernandez Date: Thu, 4 Sep 2014 19:19:46 +0000 (+0000) Subject: * Makefile.in (TAGS): Handle constructs in timevar.def. X-Git-Tag: releases/gcc-5.1.0~4828 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b67b29f62fd83a5b90da999969deed7888608f9c;p=thirdparty%2Fgcc.git * Makefile.in (TAGS): Handle constructs in timevar.def. From-SVN: r214918 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 48fcf9c443f9..851debf79794 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-09-04 Aldy Hernandez + + * Makefile.in (TAGS): Handle constructs in timevar.def. + 2014-09-04 Guozhi Wei PR target/62040 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 63124f85e164..df879b1e7406 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)