diff options
author | Zack Weinberg <zack@rabi.columbia.edu> | 1999-04-06 10:04:10 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 1999-04-06 10:04:10 +0000 |
commit | 099a9dd0c6cbc53d8c3c3799230e4321c312fbcb (patch) | |
tree | 51496bb714dc06bd6976e89d5dfcfbbab60c2334 /gcc/cppfiles.c | |
parent | 507df939403988c14389eb006304dee8975b2250 (diff) | |
download | gcc-099a9dd0c6cbc53d8c3c3799230e4321c312fbcb.zip gcc-099a9dd0c6cbc53d8c3c3799230e4321c312fbcb.tar.gz gcc-099a9dd0c6cbc53d8c3c3799230e4321c312fbcb.tar.bz2 |
cppexp.c (parse_charconst): Initialize c.
1999-04-06 12:56 -0400 Zack Weinberg <zack@rabi.columbia.edu>
* cppexp.c (parse_charconst): Initialize c.
(cpp_parse_expr): Initialize rprio.
* cppfiles.c (merge_include_chains): Initialize prev.
(finclude) Set fp->line_base to fp->buf before returning.
* cpphash.c (macroexpand): Initialize token.
* cppspec.c (lang_specific_driver): Change suff to
const char *const *.
From-SVN: r26213
Diffstat (limited to 'gcc/cppfiles.c')
-rw-r--r-- | gcc/cppfiles.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index aac49bd..4c64b9b 100644 --- a/gcc/cppfiles.c +++ b/gcc/cppfiles.c @@ -112,7 +112,7 @@ merge_include_chains (opts) Note that this algorithm is quadratic in the number of -I switches, which is acceptable since there aren't usually that many of them. */ - for (cur = quote; cur; cur = cur->next) + for (cur = quote, prev = NULL; cur; cur = cur->next) { for (other = quote; other != cur; other = other->next) if (INO_T_EQ (cur->ino, other->ino) @@ -680,6 +680,7 @@ finclude (pfile, fd, ihash) fp->system_header_p = ihash->foundhere->sysp; fp->lineno = 1; fp->colno = 1; + fp->line_base = fp->buf; fp->cleanup = file_cleanup; /* The ->actual_dir field is only used when ignore_srcdir is not in effect; |