diff options
author | Neil Booth <neil@cat.daikokuya.demon.co.uk> | 2001-07-26 06:02:47 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-07-26 06:02:47 +0000 |
commit | cef0d199d24feb707b86db0ad2991823b276cd1a (patch) | |
tree | caee9edc9501482aa583e1040604f6f2a4d52aba /gcc/cpphash.h | |
parent | 2e824adbe44a946c91c1ff94815963fd2bec93be (diff) | |
download | gcc-cef0d199d24feb707b86db0ad2991823b276cd1a.zip gcc-cef0d199d24feb707b86db0ad2991823b276cd1a.tar.gz gcc-cef0d199d24feb707b86db0ad2991823b276cd1a.tar.bz2 |
cpphash.h (struct_lexer_state): Delete was_skipping.
* cpphash.h (struct_lexer_state): Delete was_skipping.
Move skipping here from struct cpp_reader.
* cpplex.c (parse_identifier): Update.
(_cpp_lex_token): Don't skip tokens in a directive.
* cpplib.c (struct if_stack): Update.
(start_directive, end_directive): Don't change skipping state.
(_cpp_handle_directive): Update.
(do_ifdef, do_ifndef, do_if, do_elif): Similarly.
(do_else, do_endif): Update; only check for excess tokens if not
in a skipped conditional block.
(push_conditional): Update for new struct if_stack.
* gcc.dg/cpp/extratokens.c: Fix.
* gcc.dg/cpp/skipping2.c: New tests.
From-SVN: r44380
Diffstat (limited to 'gcc/cpphash.h')
-rw-r--r-- | gcc/cpphash.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gcc/cpphash.h b/gcc/cpphash.h index 56d9068..a8221d9 100644 --- a/gcc/cpphash.h +++ b/gcc/cpphash.h @@ -126,6 +126,9 @@ struct lexer_state /* Nonzero if first token on line is CPP_HASH. */ unsigned char in_directive; + /* True if we are skipping a failed conditional group. */ + unsigned char skipping; + /* Nonzero if in a directive that takes angle-bracketed headers. */ unsigned char angled_headers; @@ -216,9 +219,6 @@ struct cpp_buffer buffers. */ unsigned char from_stage3; - /* Temporary storage for pfile->skipping whilst in a directive. */ - unsigned char was_skipping; - /* 1 = system header file, 2 = C system header file used for C++. */ unsigned char sysp; @@ -342,9 +342,6 @@ struct cpp_reader /* We're printed a warning recommending against using #import. */ unsigned char import_warning; - /* True if we are skipping a failed conditional group. */ - unsigned char skipping; - /* Whether to print our version number. Done this way so we don't get it twice for -v -version. */ unsigned char print_version; |