diff options
author | Joseph Myers <joseph@codesourcery.com> | 2010-05-25 14:01:45 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2010-05-25 14:01:45 +0100 |
commit | a13812e2c83b6cc3fcc324ca3c855af68d31daa6 (patch) | |
tree | 013d843f2cba975bbb1d9e3277b722a21d0aec70 /gcc/toplev.c | |
parent | 791bddee093414f72f673e0fefb405c8eca32e23 (diff) | |
download | gcc-a13812e2c83b6cc3fcc324ca3c855af68d31daa6.zip gcc-a13812e2c83b6cc3fcc324ca3c855af68d31daa6.tar.gz gcc-a13812e2c83b6cc3fcc324ca3c855af68d31daa6.tar.bz2 |
diagnostic.c: Don't include plugin.h.
* diagnostic.c: Don't include plugin.h.
(diagnostic_report_diagnostic): Don't handle plugins specially
here. Pass context to internal_error callback.
* diagnostic.h (struct diagnostic_context): Add context parameter
to internal_error callback.
* plugin.c (warn_if_plugins, plugins_internal_error_function):
New.
* plugin.h (struct diagnostic_context): Declare.
(warn_if_plugins, plugins_internal_error_function): Declare.
* toplev.c (general_init): Set global_dc->internal_error.
* Makefile.in (diagnostic.o): Update dependencies.
ada:
* gcc-interface/misc.c (internal_error_function): Add context
parameter. Use it to access show_column flag and instead of using
global_dc. Call warn_if_plugins.
* gcc-interface/Make-lang.in (ada/misc.o): Update dependencies.
From-SVN: r159819
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 9d3396b..aa3eff3 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1697,6 +1697,7 @@ general_init (const char *argv0) override it later. */ pp_format_decoder (global_dc->printer) = &default_tree_printer; global_dc->show_option_requested = flag_diagnostics_show_option; + global_dc->internal_error = plugins_internal_error_function; /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */ #ifdef SIGSEGV |