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/testsuite/g++.dg | |
parent | 6701861954dc22642465baf26d7aaa73092392b5 (diff) | |
download | gcc-56c511556722e73073c1626ef7e3822b13a80351.zip gcc-56c511556722e73073c1626ef7e3822b13a80351.tar.gz gcc-56c511556722e73073c1626ef7e3822b13a80351.tar.bz2 |
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/testsuite/g++.dg')
-rw-r--r-- | gcc/testsuite/g++.dg/plugin/attribute_plugin.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/plugin/dumb_plugin.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.dg/plugin/attribute_plugin.c b/gcc/testsuite/g++.dg/plugin/attribute_plugin.c index deaebf1..d62ab90 100644 --- a/gcc/testsuite/g++.dg/plugin/attribute_plugin.c +++ b/gcc/testsuite/g++.dg/plugin/attribute_plugin.c @@ -60,7 +60,7 @@ plugin_init (struct plugin_name_args *plugin_info, struct plugin_gcc_version *version) { const char *plugin_name = plugin_info->base_name; - register_callback (plugin_name, PLUGIN_CXX_CP_PRE_GENERICIZE, + register_callback (plugin_name, PLUGIN_PRE_GENERICIZE, handle_pre_generic, NULL); register_callback (plugin_name, PLUGIN_ATTRIBUTES, register_attributes, NULL); diff --git a/gcc/testsuite/g++.dg/plugin/dumb_plugin.c b/gcc/testsuite/g++.dg/plugin/dumb_plugin.c index 8a16077..3aee8db 100644 --- a/gcc/testsuite/g++.dg/plugin/dumb_plugin.c +++ b/gcc/testsuite/g++.dg/plugin/dumb_plugin.c @@ -130,7 +130,7 @@ plugin_init (struct plugin_name_args *plugin_info, register_callback (plugin_name, PLUGIN_FINISH_TYPE, handle_struct, NULL); - register_callback (plugin_name, PLUGIN_CXX_CP_PRE_GENERICIZE, + register_callback (plugin_name, PLUGIN_PRE_GENERICIZE, handle_pre_generic, NULL); register_callback (plugin_name, PLUGIN_FINISH_UNIT, |