diff options
author | Zack Weinberg <zack@wolery.cumb.org> | 2000-03-07 20:58:47 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-03-07 20:58:47 +0000 |
commit | b0699daddf1eead3861e67808ac915f21f82dcf3 (patch) | |
tree | 1a0ac2a2bf6f6751175dddcf0bf7464c1266fe1a /gcc/cpperror.c | |
parent | 79e69af0254238d0b5fa1940c5f7ecfce9e11bcd (diff) | |
download | gcc-b0699daddf1eead3861e67808ac915f21f82dcf3.tar.gz |
cppfiles.c (_cpp_find_include_file): Make sure ih->name is initialized.
* cppfiles.c (_cpp_find_include_file): Make sure ih->name is
initialized.
* cppinit.c (cpp_cleanup): Free imp->nshort also.
* cpperror.c (cpp_print_containing_files,
cpp_print_file_and_line, v_cpp_message): Rename to
print_containing_files, print_file_and_line, and v_message.
* cppexp.c (cpp_parse_expr, cpp_parse_escape, cpp_lex): Rename
to _cpp_parse_expr, parse_escape, and lex.
(parse_charconst): Remove broken multibyte support.
* cppfiles.c (include_hash): Make static.
(cpp_included): New function.
(merge_include_chains, find_include_file, finclude,
simplify_pathname): Rename to _cpp_merge_include_chains,
_cpp_find_include_file, _cpp_read_include_file, and
_cpp_simplify_pathname.
* cpphash.c (cpp_lookup, free_definition, delete_macro,
cpp_install, create_definition, macroexpand, compare_defs,
dump_definition): Rename to _cpp_lookup, _cpp_free_definition,
_cpp_delete_macro, _cpp_install, _cpp_create_definition,
_cpp_macroexpand, _cpp_compare_defs, and _cpp_dump_definition.
* cppinit.c (cpp_handle_option): Rename to handle_option, make
static.
* cpplib.c: Remove extern prototype of cpp_parse_expr.
* cpphash.h: Update prototypes.
* cpplib.h: Likewise. Prototype _cpp_parse_expr here.
From-SVN: r32390
Diffstat (limited to 'gcc/cpperror.c')
-rw-r--r-- | gcc/cpperror.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/gcc/cpperror.c b/gcc/cpperror.c index b72740ce70d..577840b3e97 100644 --- a/gcc/cpperror.c +++ b/gcc/cpperror.c @@ -28,9 +28,9 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "cpplib.h" #include "intl.h" -static void cpp_print_containing_files PARAMS ((cpp_reader *, cpp_buffer *)); -static void cpp_print_file_and_line PARAMS ((const char *, long, long)); -static void v_cpp_message PARAMS ((cpp_reader *, int, +static void print_containing_files PARAMS ((cpp_reader *, cpp_buffer *)); +static void print_file_and_line PARAMS ((const char *, long, long)); +static void v_message PARAMS ((cpp_reader *, int, const char *, long, long, const char *, va_list)); @@ -38,7 +38,7 @@ static void v_cpp_message PARAMS ((cpp_reader *, int, commands which led to the current file. */ static void -cpp_print_containing_files (pfile, ip) +print_containing_files (pfile, ip) cpp_reader *pfile; cpp_buffer *ip; { @@ -86,7 +86,7 @@ cpp_print_containing_files (pfile, ip) } static void -cpp_print_file_and_line (filename, line, column) +print_file_and_line (filename, line, column) const char *filename; long line, column; { @@ -104,7 +104,7 @@ cpp_print_file_and_line (filename, line, column) 1 for error, 0 for warning. */ static void -v_cpp_message (pfile, is_error, file, line, col, msg, ap) +v_message (pfile, is_error, file, line, col, msg, ap) cpp_reader *pfile; int is_error; const char *file; @@ -122,8 +122,8 @@ v_cpp_message (pfile, is_error, file, line, col, msg, ap) if (line == -1) cpp_buf_line_and_col (ip, &line, &col); - cpp_print_containing_files (pfile, ip); - cpp_print_file_and_line (file, line, col); + print_containing_files (pfile, ip); + print_file_and_line (file, line, col); } else fprintf (stderr, "%s: ", progname); @@ -145,7 +145,7 @@ v_cpp_message (pfile, is_error, file, line, col, msg, ap) pfile->errors = CPP_FATAL_LIMIT; break; default: - cpp_ice (pfile, "bad is_error(%d) in v_cpp_message", is_error); + cpp_ice (pfile, "bad is_error(%d) in v_message", is_error); } vfprintf (stderr, _(msg), ap); @@ -173,7 +173,7 @@ cpp_ice VPARAMS ((cpp_reader *pfile, const char *msgid, ...)) msgid = va_arg (ap, const char *); #endif - v_cpp_message (pfile, 3, NULL, -1, -1, msgid, ap); + v_message (pfile, 3, NULL, -1, -1, msgid, ap); va_end(ap); } @@ -199,7 +199,7 @@ cpp_fatal VPARAMS ((cpp_reader *pfile, const char *msgid, ...)) msgid = va_arg (ap, const char *); #endif - v_cpp_message (pfile, 2, NULL, -1, -1, msgid, ap); + v_message (pfile, 2, NULL, -1, -1, msgid, ap); va_end(ap); } @@ -222,7 +222,7 @@ cpp_error VPARAMS ((cpp_reader * pfile, const char *msgid, ...)) if (CPP_OPTIONS (pfile)->inhibit_errors) return; - v_cpp_message (pfile, 1, NULL, -1, -1, msgid, ap); + v_message (pfile, 1, NULL, -1, -1, msgid, ap); va_end(ap); } @@ -250,7 +250,7 @@ cpp_error_with_line VPARAMS ((cpp_reader *pfile, int line, int column, if (CPP_OPTIONS (pfile)->inhibit_errors) return; - v_cpp_message (pfile, 1, NULL, line, column, msgid, ap); + v_message (pfile, 1, NULL, line, column, msgid, ap); va_end(ap); } @@ -282,7 +282,7 @@ cpp_warning VPARAMS ((cpp_reader * pfile, const char *msgid, ...)) if (CPP_OPTIONS (pfile)->inhibit_warnings) return; - v_cpp_message (pfile, 0, NULL, -1, -1, msgid, ap); + v_message (pfile, 0, NULL, -1, -1, msgid, ap); va_end(ap); } @@ -310,7 +310,7 @@ cpp_warning_with_line VPARAMS ((cpp_reader * pfile, int line, int column, if (CPP_OPTIONS (pfile)->inhibit_warnings) return; - v_cpp_message (pfile, 0, NULL, line, column, msgid, ap); + v_message (pfile, 0, NULL, line, column, msgid, ap); va_end(ap); } @@ -335,7 +335,7 @@ cpp_pedwarn VPARAMS ((cpp_reader * pfile, const char *msgid, ...)) : CPP_OPTIONS (pfile)->inhibit_warnings) return; - v_cpp_message (pfile, CPP_OPTIONS (pfile)->pedantic_errors, + v_message (pfile, CPP_OPTIONS (pfile)->pedantic_errors, NULL, -1, -1, msgid, ap); va_end(ap); } @@ -366,7 +366,7 @@ cpp_pedwarn_with_line VPARAMS ((cpp_reader * pfile, int line, int column, : CPP_OPTIONS (pfile)->inhibit_warnings) return; - v_cpp_message (pfile, CPP_OPTIONS (pfile)->pedantic_errors, + v_message (pfile, CPP_OPTIONS (pfile)->pedantic_errors, NULL, line, column, msgid, ap); va_end(ap); } @@ -403,7 +403,7 @@ cpp_pedwarn_with_file_and_line VPARAMS ((cpp_reader *pfile, : CPP_OPTIONS (pfile)->inhibit_warnings) return; - v_cpp_message (pfile, CPP_OPTIONS (pfile)->pedantic_errors, + v_message (pfile, CPP_OPTIONS (pfile)->pedantic_errors, file, line, col, msgid, ap); va_end(ap); } |