diff options
author | Taras Glek <tglek@mozilla.com> | 2009-05-14 01:38:33 +0000 |
---|---|---|
committer | Taras Glek <tglek@gcc.gnu.org> | 2009-05-14 01:38:33 +0000 |
commit | d1c8e08a0c45483b90b09e6cdf12cf8d77876fd6 (patch) | |
tree | 79caa93c375ec4191d07fcb56826aa922c1e1518 /gcc/gcc-plugin.h | |
parent | 1806edae58885e4bde7c0a06ec4afb3726e494e5 (diff) | |
download | gcc-d1c8e08a0c45483b90b09e6cdf12cf8d77876fd6.zip gcc-d1c8e08a0c45483b90b09e6cdf12cf8d77876fd6.tar.gz gcc-d1c8e08a0c45483b90b09e6cdf12cf8d77876fd6.tar.bz2 |
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
From-SVN: r147516
Diffstat (limited to 'gcc/gcc-plugin.h')
-rw-r--r-- | gcc/gcc-plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/gcc-plugin.h b/gcc/gcc-plugin.h index 96c867d..ba20b42 100644 --- a/gcc/gcc-plugin.h +++ b/gcc/gcc-plugin.h @@ -29,6 +29,7 @@ enum plugin_event PLUGIN_CXX_CP_PRE_GENERICIZE, /* Allows to see low level AST in C++ FE. */ PLUGIN_FINISH, /* Called before GCC exits. */ PLUGIN_INFO, /* Information about the plugin */ + PLUGIN_ATTRIBUTES, /* Called during attribute registration. */ PLUGIN_EVENT_LAST /* Dummy event used for indexing callback array. */ }; |