diff options
author | Brian Hackett <bhackett1024@gmail.com> | 2009-12-21 20:37:49 +0000 |
---|---|---|
committer | Rafael Espindola <espindola@gcc.gnu.org> | 2009-12-21 20:37:49 +0000 |
commit | 1c701f96a5b1b4c647e5c128b8f4ad2184796a65 (patch) | |
tree | 0860091bd9a985e741872ce5c45ed4bcc5b21593 /gcc/plugin.c | |
parent | 78e36824107c5852df78560d7611c84d28fe9712 (diff) | |
download | gcc-1c701f96a5b1b4c647e5c128b8f4ad2184796a65.zip gcc-1c701f96a5b1b4c647e5c128b8f4ad2184796a65.tar.gz gcc-1c701f96a5b1b4c647e5c128b8f4ad2184796a65.tar.bz2 |
decl.c (finish_function): Rename pre-genericize event.
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.
From-SVN: r155379
Diffstat (limited to 'gcc/plugin.c')
-rw-r--r-- | gcc/plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/plugin.c b/gcc/plugin.c index 78f99ca..25e5b95 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: |