diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2003-06-12 06:09:15 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2003-06-12 06:09:15 +0000 |
commit | 78b8811a387bd5f91d4b0a70fdd63e043ffa4bf9 (patch) | |
tree | 0ab8d16523fbcbfca756131fa06162d509f6269a /gcc/cpplib.h | |
parent | ed44683592f6503ce41f466aa075aa146235ca11 (diff) | |
download | gcc-78b8811a387bd5f91d4b0a70fdd63e043ffa4bf9.zip gcc-78b8811a387bd5f91d4b0a70fdd63e043ffa4bf9.tar.gz gcc-78b8811a387bd5f91d4b0a70fdd63e043ffa4bf9.tar.bz2 |
Don't warn on dollars in builtin macro definitions,
e.g. __REGISTER_PREFIX__.
* cpphash.h (struct cpp_reader): Move member warn_dollars...
* cpplib.h (struct cpp_options): ...to here. Change type to
unsigned char.
* cppinit.c (cpp_create_reader): Set it to 1 here.
(post_options): Don't set it here.
* c-opts.c (c_common_init_options): Reset it to 0 here.
(finish_options): Set it here.
* cpplex.c (forms_identifier_p): Tweak for new location of
warn_dollars.
From-SVN: r67824
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index a47a7fb..4514252 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -300,6 +300,10 @@ struct cpp_options /* Zero means dollar signs are punctuation. */ unsigned char dollars_in_ident; + /* True if we should warn about dollars in identifiers or numbers + for this translation unit. */ + unsigned char warn_dollars; + /* Nonzero means warn if undefined identifiers are evaluated in an #if. */ unsigned char warn_undef; |