diff options
author | Brian Hackett <bhackett1024@gmail.com> | 2009-12-22 16:27:25 +0000 |
---|---|---|
committer | Rafael Espindola <espindola@gcc.gnu.org> | 2009-12-22 16:27:25 +0000 |
commit | 56c511556722e73073c1626ef7e3822b13a80351 (patch) | |
tree | 9b80989cea23ceb4e290096c1bc55a2dec603673 /gcc/doc/plugins.texi | |
parent | 6701861954dc22642465baf26d7aaa73092392b5 (diff) | |
download | gcc-56c511556722e73073c1626ef7e3822b13a80351.tar.gz |
plugins.texi: Rename pre-genericize event.
2009-12-22 Brian Hackett <bhackett1024@gmail.com>
* doc/plugins.texi: Rename pre-genericize event.
2009-12-22 Brian Hackett <bhackett1024@gmail.com>
* g++.dg/plugin/attribute_plugin.c: Rename pre-genericize event.
* g++.dg/plugin/dumb_plugin.c: Same.
From-SVN: r155401
Diffstat (limited to 'gcc/doc/plugins.texi')
-rw-r--r-- | gcc/doc/plugins.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/plugins.texi b/gcc/doc/plugins.texi index d446f9fd5c6..35f1b70824e 100644 --- a/gcc/doc/plugins.texi +++ b/gcc/doc/plugins.texi @@ -145,7 +145,7 @@ enum plugin_event PLUGIN_PASS_MANAGER_SETUP, /* To hook into pass manager. */ PLUGIN_FINISH_TYPE, /* After finishing parsing a type. */ PLUGIN_FINISH_UNIT, /* Useful for summary processing. */ - PLUGIN_CXX_CP_PRE_GENERICIZE, /* Allows to see low level AST in C++ FE. */ + PLUGIN_PRE_GENERICIZE, /* Allows to see low level AST in C and C++ frontends. */ PLUGIN_FINISH, /* Called before GCC exits. */ PLUGIN_INFO, /* Information about the plugin. */ PLUGIN_GGC_START, /* Called at start of GCC Garbage Collection. */ |