diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/scan-decls.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index aa96076..24aad72 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2001-09-15 Neil Booth <neil@daikokuya.demon.co.uk> + * scan-decls.c (scan_decls): Fix typo. + +2001-09-15 Neil Booth <neil@daikokuya.demon.co.uk> + * cpphash.h (struct cpp_reader): Remove lexer_pos, directive_pos. Split mlstring_pos into mls_line and mls_col. * cppinit.c (cpp_create_reader): Initialize line to 1. diff --git a/gcc/scan-decls.c b/gcc/scan-decls.c index 7fd36ca..fbe4e9d 100644 --- a/gcc/scan-decls.c +++ b/gcc/scan-decls.c @@ -170,7 +170,7 @@ scan_decls (pfile, argc, argv) || token.type == CPP_ELLIPSIS) have_arg_list = 1; } - recognized_function (&prev_id, token->line, + recognized_function (&prev_id, token.line, (saw_inline ? 'I' : in_extern_C_brace || current_extern_C ? 'F' : 'f'), have_arg_list); |