summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/extratokens.c
diff options
context:
space:
mode:
authorneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2001-07-26 06:02:47 +0000
committerneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2001-07-26 06:02:47 +0000
commit5e8785172ae21f82c03a677aa16602639af58d39 (patch)
treecaee9edc9501482aa583e1040604f6f2a4d52aba /gcc/testsuite/gcc.dg/cpp/extratokens.c
parent23f37e15fff4896c63987b3958cf8f365d50cb6f (diff)
downloadgcc-5e8785172ae21f82c03a677aa16602639af58d39.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44380 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.dg/cpp/extratokens.c')
-rw-r--r--gcc/testsuite/gcc.dg/cpp/extratokens.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/cpp/extratokens.c b/gcc/testsuite/gcc.dg/cpp/extratokens.c
index 0941be7c069..c06a41d4c2b 100644
--- a/gcc/testsuite/gcc.dg/cpp/extratokens.c
+++ b/gcc/testsuite/gcc.dg/cpp/extratokens.c
@@ -15,7 +15,7 @@
#ifndef foo bar /* { dg-error "extra tokens" "tokens after #ifndef" } */
#endif
-#if 0
+#if 1
#if 0
#else foo /* { dg-warning "extra tokens" "tokens after #else" } */
#endif / /* { dg-warning "extra tokens" "tokens after #endif" } */