diff options
author | tglek <tglek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-14 01:38:33 +0000 |
---|---|---|
committer | tglek <tglek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-14 01:38:33 +0000 |
commit | e3fced1ac7503512a9ccdcb5da732f2513b7a2cd (patch) | |
tree | 79caa93c375ec4191d07fcb56826aa922c1e1518 /gcc/plugin.c | |
parent | 9ee55131e58408014be9ee79da60968c264cc760 (diff) | |
download | gcc-e3fced1ac7503512a9ccdcb5da732f2513b7a2cd.tar.gz |
2009-05-13 Taras Glek <tglek@mozilla.com>
gcc/
* attribs.c moved out attribute registration into register_attribute
* doc/plugins.texi Documented register_attribute and PLUGIN_ATTRIBUTES
* gcc-plugin.h Added forward decl for register_attribute
* plugin.c Added PLUGIN_ATTRIBUTES boilerplate
* plugin.h Added PLUGIN_ATTRIBUTES
gcc/testsuite/
* g++.dg/plugin/attribute_plugin-test-1.C Testcase input for custom attributes and decl smashing
* g++.dg/plugin/attribute_plugin.c Testcase plugin to test user attributes
* g++.dg/plugin/dumb_plugin.c Fixed typo
* g++.dg/plugin/plugin.exp Added attribute_plugin test
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@147516 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/plugin.c')
-rw-r--r-- | gcc/plugin.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/plugin.c b/gcc/plugin.c index dec336d70b7..923f0add0cf 100644 --- a/gcc/plugin.c +++ b/gcc/plugin.c @@ -493,6 +493,7 @@ register_callback (const char *plugin_name, case PLUGIN_FINISH_TYPE: case PLUGIN_FINISH_UNIT: case PLUGIN_CXX_CP_PRE_GENERICIZE: + case PLUGIN_ATTRIBUTES: case PLUGIN_FINISH: { struct callback_info *new_callback; @@ -534,6 +535,7 @@ invoke_plugin_callbacks (enum plugin_event event, void *gcc_data) case PLUGIN_FINISH_TYPE: case PLUGIN_FINISH_UNIT: case PLUGIN_CXX_CP_PRE_GENERICIZE: + case PLUGIN_ATTRIBUTES: case PLUGIN_FINISH: { /* Iterate over every callback registered with this event and |