diff options
author | Jakub Jelinek <jakub@gcc.gnu.org> | 2006-01-23 22:50:15 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2006-01-23 22:50:15 +0100 |
commit | 839009978ae5e2e4f30057e2cdfd925a05c9cc95 (patch) | |
tree | 426b4cdfa24c0b381ad5f2bef8e8807afd097204 /libcpp/init.c | |
parent | 7ebaeab50e26463a6fbe6fe23cffdf69a84bce30 (diff) | |
download | gcc-839009978ae5e2e4f30057e2cdfd925a05c9cc95.zip gcc-839009978ae5e2e4f30057e2cdfd925a05c9cc95.tar.gz gcc-839009978ae5e2e4f30057e2cdfd925a05c9cc95.tar.bz2 |
re PR preprocessor/25717 (-dD does not list all defined macros (in particular, __STDC__))
PR preprocessor/25717
* init.c (cpp_init_builtins): If __STDC__ will not change value
between system headers and other sources, define it as a normal
macro rather than a builtin.
* macro.c (_cpp_builtin_macro_text) <case BT_STDC>: Only check
cpp_in_system_header condition.
From-SVN: r110144
Diffstat (limited to 'libcpp/init.c')
-rw-r--r-- | libcpp/init.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libcpp/init.c b/libcpp/init.c index bbf2705..bf4c34c 100644 --- a/libcpp/init.c +++ b/libcpp/init.c @@ -357,8 +357,14 @@ cpp_init_builtins (cpp_reader *pfile, int hosted) if (CPP_OPTION (pfile, traditional)) n -= 2; + else if (! CPP_OPTION (pfile, stdc_0_in_system_headers) + || CPP_OPTION (pfile, std)) + { + n--; + _cpp_define_builtin (pfile, "__STDC__ 1"); + } - for(b = builtin_array; b < builtin_array + n; b++) + for (b = builtin_array; b < builtin_array + n; b++) { cpp_hashnode *hp = cpp_lookup (pfile, b->name, b->len); hp->type = NT_MACRO; |