summaryrefslogtreecommitdiff
path: root/gcc/plugin.c
diff options
context:
space:
mode:
authorespindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4>2009-12-21 20:37:49 +0000
committerespindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4>2009-12-21 20:37:49 +0000
commit0bac94cb594aa47c9a883f83daeaa628401baf8d (patch)
tree0860091bd9a985e741872ce5c45ed4bcc5b21593 /gcc/plugin.c
parent5298c37aa1fc07e2db9507b94b806034b0b70063 (diff)
downloadgcc-0bac94cb594aa47c9a883f83daeaa628401baf8d.tar.gz
2009-12-21 Brian Hackett <bhackett1024@gmail.com>
* decl.c (finish_function): Rename pre-genericize event. 2009-12-21 Brian Hackett <bhackett1024@gmail.com> * plugin.def: Rename pre-genericize event. * plugin.c (register_callback, invoke_plugin_callbacks): Same. * c-decl.c (finish_function): Invoke callbacks on above event. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@155379 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/plugin.c')
-rw-r--r--gcc/plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/plugin.c b/gcc/plugin.c
index 78f99ca5d3b..25e5b95be8f 100644
--- a/gcc/plugin.c
+++ b/gcc/plugin.c
@@ -402,7 +402,7 @@ register_callback (const char *plugin_name,
case PLUGIN_FINISH_TYPE:
case PLUGIN_START_UNIT:
case PLUGIN_FINISH_UNIT:
- case PLUGIN_CXX_CP_PRE_GENERICIZE:
+ case PLUGIN_PRE_GENERICIZE:
case PLUGIN_GGC_START:
case PLUGIN_GGC_MARKING:
case PLUGIN_GGC_END:
@@ -483,7 +483,7 @@ invoke_plugin_callbacks (int event, void *gcc_data)
case PLUGIN_FINISH_TYPE:
case PLUGIN_START_UNIT:
case PLUGIN_FINISH_UNIT:
- case PLUGIN_CXX_CP_PRE_GENERICIZE:
+ case PLUGIN_PRE_GENERICIZE:
case PLUGIN_ATTRIBUTES:
case PLUGIN_PRAGMAS:
case PLUGIN_FINISH: