diff options
author | Zack Weinberg <zack@codesourcery.com> | 2002-05-16 19:03:02 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2002-05-16 19:03:02 +0000 |
commit | 5279d7394efe3e6d39e9c5f0bbb066e63f4cf398 (patch) | |
tree | 7ba2394a66b4c75f323247f002ba280c373fb85a /gcc/cpplib.h | |
parent | 62e6ca55bd6a235d9feccd4ac48c2b89e0bc32e5 (diff) | |
download | gcc-5279d7394efe3e6d39e9c5f0bbb066e63f4cf398.zip gcc-5279d7394efe3e6d39e9c5f0bbb066e63f4cf398.tar.gz gcc-5279d7394efe3e6d39e9c5f0bbb066e63f4cf398.tar.bz2 |
c-common.c (STDC_0_IN_SYSTEM_HEADERS, [...]): Default-define here.
* c-common.c (STDC_0_IN_SYSTEM_HEADERS, REGISTER_PREFIX):
Default-define here.
(builtin_define_with_value): Can now wrap the expansion in
quotation marks if such is wanted.
(cb_register_builtins): Update calls to builtin_define_with_value.
Define __REGISTER_PREFIX__, __USER_LABEL_PREFIX__, and __VERSION__
here.
(c_common_init): Set options->stdc_0_in_system_headers.
* c-lex.h: Update prototype of builtin_define_with_value.
* cppdefault.h: Remove default definitions of USER_LABEL_PREFIX
and REGISTER_PREFIX.
* cppinit.c (VERS, ULP, C, X): Kill.
(builtin_array): Remove entries for __VERSION__,
__USER_LABEL_PREFIX__, __REGISTER_PREFIX__, and
__HAVE_BUILTIN_SETJMP__. Make __STDC__ always a builtin, not
a constant.
(init_builtins): Kill off a bunch of now-dead code.
(COMMAND_LINE_OPTIONS): Remove -fleading-underscore and
-fno-leading-underscore.
(cpp_handle_option): Remove code to set user_label_prefix.
(cpp_post_options): Likewise.
* cpplib.h (struct cpp_options): Remove user_label_prefix.
(stdc_0_in_system_headers): New.
* cppmacro.c (builtin_macro): Check CPP_OPTION (pfile,
stdc_0_in_system_headers) too to decide the value of __STDC__.
* tradcpp.c (user_label_prefix): Kill.
(main): Remove code handling -f(no-)leading-underscore.
(initialize_builtins): Don't define __REGISTER_PREFIX__
or __USER_LABEL_PREFIX__.
(install_value): Wrap compound statement in dummy loop so the
macro works properly in an if statement.
From-SVN: r53525
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 1b7da37..9bccda3 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -248,9 +248,6 @@ struct cpp_options const char *include_prefix; unsigned int include_prefix_len; - /* -fleading_underscore sets this to "_". */ - const char *user_label_prefix; - /* The language we're preprocessing. */ enum c_lang lang; @@ -397,6 +394,9 @@ struct cpp_options /* Nonzero means chars (wide chars) are unsigned. */ unsigned char unsigned_char, unsigned_wchar; + + /* Nonzero means __STDC__ should have the value 0 in system headers. */ + unsigned char stdc_0_in_system_headers; }; /* Call backs. */ |