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/diagnostic.h | |
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/diagnostic.h')
-rw-r--r-- | gcc/diagnostic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/diagnostic.h b/gcc/diagnostic.h index 1db91c2..9fd508b 100644 --- a/gcc/diagnostic.h +++ b/gcc/diagnostic.h @@ -112,7 +112,7 @@ struct diagnostic_context diagnostic_finalizer_fn end_diagnostic; /* Client hook to report an internal error. */ - void (*internal_error) (const char *, va_list *); + void (*internal_error) (diagnostic_context *, const char *, va_list *); /* Auxiliary data for client. */ void *x_data; |