diff options
Diffstat (limited to 'gcc/cpphash.h')
-rw-r--r-- | gcc/cpphash.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cpphash.h b/gcc/cpphash.h index 6874c21..77c80cd 100644 --- a/gcc/cpphash.h +++ b/gcc/cpphash.h @@ -194,6 +194,9 @@ struct cpp_buffer /* Line number at line_base (above). */ unsigned int lineno; + /* Contains PREV_WHITE and/or AVOID_LPASTE. */ + unsigned char saved_flags; + /* Because of the way the lexer works, -Wtrigraphs can sometimes warn twice for the same trigraph. This helps prevent that. */ const unsigned char *last_Wtrigraphs; @@ -331,9 +334,6 @@ struct cpp_reader /* We're printed a warning recommending against using #import. */ unsigned char import_warning; - /* Used to flag the token after a paste AVOID_LPASTE. */ - unsigned char saved_flags; - /* True after cpp_start_read completes. Used to inhibit some warnings while parsing the command line. */ unsigned char done_initializing; |