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/cpphash.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/cpphash.c')
-rw-r--r-- | gcc/cpphash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpphash.c b/gcc/cpphash.c index ff63bd8..87946f2 100644 --- a/gcc/cpphash.c +++ b/gcc/cpphash.c @@ -1081,7 +1081,7 @@ macroexpand (pfile, hp) if (nargs >= 0) { - enum cpp_token token; + enum cpp_token token = CPP_EOF; args = (struct argdata *) alloca ((nargs + 1) * sizeof (struct argdata)); |