diff options
author | espindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-12-21 20:37:49 +0000 |
---|---|---|
committer | espindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-12-21 20:37:49 +0000 |
commit | 0bac94cb594aa47c9a883f83daeaa628401baf8d (patch) | |
tree | 0860091bd9a985e741872ce5c45ed4bcc5b21593 /gcc/plugin.def | |
parent | 5298c37aa1fc07e2db9507b94b806034b0b70063 (diff) | |
download | gcc-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.def')
-rw-r--r-- | gcc/plugin.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/plugin.def b/gcc/plugin.def index b4e541e3c17..4a40c2cf79e 100644 --- a/gcc/plugin.def +++ b/gcc/plugin.def @@ -27,8 +27,8 @@ DEFEVENT (PLUGIN_FINISH_TYPE) /* Useful for summary processing. */ DEFEVENT (PLUGIN_FINISH_UNIT) -/* Allows to see low level AST in C++ FE. */ -DEFEVENT (PLUGIN_CXX_CP_PRE_GENERICIZE) +/* Allows to see low level AST in C and C++ frontends. */ +DEFEVENT (PLUGIN_PRE_GENERICIZE) /* Called before GCC exits. */ DEFEVENT (PLUGIN_FINISH) |