diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2002-01-03 18:32:55 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2002-01-03 18:32:55 +0000 |
commit | d15a58c0f10fda3353686841a055dea7d2674d86 (patch) | |
tree | 4b0b3ec26267cd45c6d5a08758733db9a4023f1f /gcc/cppmain.c | |
parent | 2fd174098b42203109ccbf3e1c6a128c32596255 (diff) | |
download | gcc-d15a58c0f10fda3353686841a055dea7d2674d86.zip gcc-d15a58c0f10fda3353686841a055dea7d2674d86.tar.gz gcc-d15a58c0f10fda3353686841a055dea7d2674d86.tar.bz2 |
cppmacro.c: Don't include intl.h.
* cppmacro.c: Don't include intl.h. Update comments.
(new_number_token): Allocate enough buffer for 64-bit unsigned
integers; update prototype.
* cppmain.c: Update comments.
From-SVN: r48518
Diffstat (limited to 'gcc/cppmain.c')
-rw-r--r-- | gcc/cppmain.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/cppmain.c b/gcc/cppmain.c index 237f901..70f5bb3 100644 --- a/gcc/cppmain.c +++ b/gcc/cppmain.c @@ -162,7 +162,7 @@ do_preprocessing (argc, argv) { cpp_finish_options (pfile); - /* A successful cpp_start_read guarantees that we can call + /* A successful cpp_read_main_file guarantees that we can call cpp_scan_nooutput or cpp_get_token next. */ if (options->no_output) cpp_scan_nooutput (pfile); @@ -275,7 +275,6 @@ check_multiline_token (str) /* If the token read on logical line LINE needs to be output on a different line to the current one, output the required newlines or a line marker, and return 1. Otherwise return 0. */ - static void maybe_print_line (map, line) const struct line_map *map; @@ -330,8 +329,7 @@ print_line (map, line, special_flags) } /* Called when a line of output is started. TOKEN is the first token - of the line, and may be CPP_EOF. */ - + of the line, and at end of file will be CPP_EOF. */ static void cb_line_change (pfile, token, parsing_args) cpp_reader *pfile ATTRIBUTE_UNUSED; |