aboutsummaryrefslogtreecommitdiff
path: root/gcc/scan-decls.c
diff options
context:
space:
mode:
authorNeil Booth <neil@cat.daikokuya.demon.co.uk>2001-08-04 12:01:59 +0000
committerNeil Booth <neil@gcc.gnu.org>2001-08-04 12:01:59 +0000
commitef6e958a8611ff372211d0fd3cd9659614583bb4 (patch)
tree0aaaf48e2153d5621bc68cb09f9c0d2ef9a3854a /gcc/scan-decls.c
parent03997728b499f76a20356705aa4d05d808ab9c3c (diff)
downloadgcc-ef6e958a8611ff372211d0fd3cd9659614583bb4.zip
gcc-ef6e958a8611ff372211d0fd3cd9659614583bb4.tar.gz
gcc-ef6e958a8611ff372211d0fd3cd9659614583bb4.tar.bz2
Makefile.in (CPPLIB_H): New, so that dependencies on cpplib.h are also on line-map.h.
* Makefile.in (CPPLIB_H): New, so that dependencies on cpplib.h are also on line-map.h. * cppfiles.c (stack_include_file): Update. * cpphash.h (struct cpp_buffer): New member return_at_eof. (_cpp_pop_buffer): New. * cppinit.c (cpp_destroy, cpp_finish): Update. (do_includes): Mark each buffer to return at EOF. * cpplex.c (_cpp_lex_token): Pop buffers at EOF. Continue or return as requested. * cpplib.c (run_directive, do_line, cpp_push_buffer): Update. (cpp_pop_buffer): Rename _cpp_pop_buffer. Stop skipping. * cpplib.h (cpp_pop_buffer): Remove. (cpp_scan_buffer_nooutput): Rename cpp_scan_nooutput. * cppmacro.c (cpp_scan_buffer_nooutput): Similarly. No need to pop buffers. * cppmain.c (scan_buffer): Rename scan_translation_unit. No need to pop buffers. (do_preprocessing): Update. * fix-header.c (read_scan_file): Update. No need to pop buffers. * c-parse.in (_yylex): Similarly. * scan-decls.c (scan_decls): Similarly. * line-map.h: Update comments. * cp/spew.c (read_token): No need to pop buffers. * objc/Make-lang.in (objc-act.o): Update dependencies. From-SVN: r44634
Diffstat (limited to 'gcc/scan-decls.c')
-rw-r--r--gcc/scan-decls.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/gcc/scan-decls.c b/gcc/scan-decls.c
index 336ced7..2fe570e 100644
--- a/gcc/scan-decls.c
+++ b/gcc/scan-decls.c
@@ -111,13 +111,10 @@ scan_decls (pfile, argc, argv)
brace_nesting++;
goto new_statement;
}
+
if (token.type == CPP_EOF)
- {
- if (cpp_pop_buffer (pfile) == 0)
- return 0;
+ return 0;
- goto new_statement;
- }
if (token.type == CPP_SEMICOLON)
goto new_statement;
if (token.type != CPP_NAME)
@@ -148,9 +145,7 @@ scan_decls (pfile, argc, argv)
goto new_statement;
case CPP_EOF:
- if (cpp_pop_buffer (pfile) == 0)
- return 0;
- break;
+ return 0;
case CPP_OPEN_PAREN:
/* Looks like this is the start of a formal parameter list. */