diff options
author | Diego Novillo <dnovillo@google.com> | 2009-04-14 23:41:28 -0400 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2009-04-14 23:41:28 -0400 |
commit | dab71827a9201dd1ba59d1095fac1237036f9f0b (patch) | |
tree | 5d9837cad5adf85d3fe250481be67981045fb958 /gcc/plugin.c | |
parent | f86ce6015ef9aa3d143c20a0072df231235b5344 (diff) | |
download | gcc-dab71827a9201dd1ba59d1095fac1237036f9f0b.zip gcc-dab71827a9201dd1ba59d1095fac1237036f9f0b.tar.gz gcc-dab71827a9201dd1ba59d1095fac1237036f9f0b.tar.bz2 |
diagnostic.c (diagnostic_report_diagnostic): Do not warn about loaded plugins for DK_ERROR and DK_WARNING.
* diagnostic.c (diagnostic_report_diagnostic): Do not
warn about loaded plugins for DK_ERROR and DK_WARNING.
* c-decl.c (declspecs_add_type): Move call to
invoke_plugin_callbacks ...
* c-parser.c (c_parser_declspecs): ... here.
* plugin.c (dump_active_plugins): Tidy output.
cp/ChangeLog
* parser.c (cp_parser_type_specifier_seq): Move call to
invoke_plugin_callbacks ...
(cp_parser_type_specifier_seq): ... here.
From-SVN: r146078
Diffstat (limited to 'gcc/plugin.c')
-rw-r--r-- | gcc/plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/plugin.c b/gcc/plugin.c index 93e158c..92e88a8 100644 --- a/gcc/plugin.c +++ b/gcc/plugin.c @@ -647,7 +647,7 @@ dump_active_plugins (FILE *file) if (!plugins_active_p ()) return; - fprintf (stderr, "Event\t\tPlugins\n"); + fprintf (stderr, "Event\t\t\tPlugins\n"); for (event = PLUGIN_PASS_MANAGER_SETUP; event < PLUGIN_EVENT_LAST; event++) if (plugin_callbacks[event]) { |