diff options
author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-09-02 15:09:54 +0000 |
---|---|---|
committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-09-02 15:09:54 +0000 |
commit | 023cabf82b771650129be71914e98d919434f7c8 (patch) | |
tree | ee728e3fa0045a40546cdb17c51f846800c5a0fa /gcc/Makefile.in | |
parent | 407509954982a4c81744de81eeb6c01ad67c4707 (diff) | |
download | gcc-023cabf82b771650129be71914e98d919434f7c8.tar.gz |
* 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
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
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) # ----------------------------------------------------- |