diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-11 15:57:38 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-11 15:57:38 +0000 |
commit | e4ae859de0fa4e0da931697be6853a178eb75c8e (patch) | |
tree | f0e5cd42f4834ff1cb97931ca420f0b81dd28570 /gcc/plugin.def | |
parent | b11771e12ba48f5beb4e9bf8f0bc760db3650f3d (diff) | |
download | gcc-e4ae859de0fa4e0da931697be6853a178eb75c8e.tar.gz |
2011-08-11 Romain Geissler <romain.geissler@gmail.com>
Brian Hackett <bhackett1024@gmail.com>
gcc/ChangeLog:
* plugin.def: Add event for finish_decl.
* plugin.c (register_callback, invoke_plugin_callbacks): Same.
* c-decl.c (finish_decl): Invoke callbacks on above event.
* doc/plugins.texi: Document above event.
gcc/cp/ChangeLog:
* decl.c (cp_finish_decl): Invoke callbacks on finish_decl event.
gcc/testsuite/ChangeLog:
* g++.dg/plugin/decl_plugin.c: New.
* g++.dg/plugin/decl-plugin-test.C: New.
* g++.dg/plugin/plugin.exp: Add above testcase.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@177674 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/plugin.def')
-rw-r--r-- | gcc/plugin.def | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/plugin.def b/gcc/plugin.def index 4a40c2cf79e..0c9c8bc76f5 100644 --- a/gcc/plugin.def +++ b/gcc/plugin.def @@ -24,6 +24,9 @@ DEFEVENT (PLUGIN_PASS_MANAGER_SETUP) /* After finishing parsing a type. */ DEFEVENT (PLUGIN_FINISH_TYPE) +/* After finishing parsing a declaration. */ +DEFEVENT (PLUGIN_FINISH_DECL) + /* Useful for summary processing. */ DEFEVENT (PLUGIN_FINISH_UNIT) |