diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-25 09:43:03 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-25 09:43:03 +0000 |
commit | 31ca26b1948f1df0f16f83053aea78680fea0965 (patch) | |
tree | 9b8fa1374187361bdd59562c00a312f85f75d707 /gcc/cppmacro.c | |
parent | 5f55356392b4ab0c6f31ddb9b8b4aecb21aa86fc (diff) | |
download | gcc-31ca26b1948f1df0f16f83053aea78680fea0965.tar.gz |
* cppinit.c (builtin_array): Update.
(init_builtins): Flag builtins to warn if redefined or
undefined. Define __GXX_WEAK as a normal macro.
* cpplib.c (do_undef): Warn if flagged NODE_WARN.
* cpplib.h (NODE_WARN): New flag.
* cppmacro.c (builtin_macro): Remove handling of __GXX_WEAK__.
Handle __STDC__ as a builtin only on Solaris.
(warn_of_redefinition): Renamed from check_macro_definition.
Reverse sense of test. Always warn if NODE_WARN.
(_cpp_create_definition): Use warn_of_redefinition. Flag
any macro beginning with "__STDC_" to require a mandatory
warning if redefined or undefined.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40053 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cppmacro.c')
-rw-r--r-- | gcc/cppmacro.c | 52 |
1 files changed, 22 insertions, 30 deletions
diff --git a/gcc/cppmacro.c b/gcc/cppmacro.c index 7a65e9725e5..4d4302dcbca 100644 --- a/gcc/cppmacro.c +++ b/gcc/cppmacro.c @@ -29,10 +29,6 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "cpplib.h" #include "cpphash.h" -#ifndef STDC_0_IN_SYSTEM_HEADERS -#define STDC_0_IN_SYSTEM_HEADERS 0 /* Boolean macro. */ -#endif - struct cpp_macro { cpp_hashnode **params; /* Parameters, if any. */ @@ -92,9 +88,8 @@ static void free_lookahead PARAMS ((cpp_lookahead *)); /* #define directive parsing and handling. */ static cpp_token *lex_expansion_token PARAMS ((cpp_reader *, cpp_macro *)); -static int check_macro_redefinition PARAMS ((cpp_reader *, - const cpp_hashnode *, - const cpp_macro *)); +static int warn_of_redefinition PARAMS ((cpp_reader *, const cpp_hashnode *, + const cpp_macro *)); static int save_parameter PARAMS ((cpp_reader *, cpp_macro *, cpp_hashnode *)); static int parse_params PARAMS ((cpp_reader *, cpp_macro *)); static void check_trad_stringification PARAMS ((cpp_reader *, @@ -184,11 +179,8 @@ builtin_macro (pfile, token) case BT_STDC: { - int stdc = 1; - - if (STDC_0_IN_SYSTEM_HEADERS && CPP_IN_SYSTEM_HEADER (pfile) - && pfile->spec_nodes.n__STRICT_ANSI__->type == NT_VOID) - stdc = 0; + int stdc = (!CPP_IN_SYSTEM_HEADER (pfile) + || pfile->spec_nodes.n__STRICT_ANSI__->type != NT_VOID); make_number_token (pfile, token, stdc); } break; @@ -217,10 +209,6 @@ builtin_macro (pfile, token) *token = node->value.builtin == BT_DATE ? pfile->date: pfile->time; break; - case BT_WEAK: - make_number_token (pfile, token, SUPPORTS_ONE_ONLY); - break; - default: cpp_ice (pfile, "invalid builtin macro \"%s\"", node->name); break; @@ -1178,9 +1166,9 @@ _cpp_push_token (pfile, token, pos) /* #define directive parsing and handling. */ -/* Returns non-zero if a macro redefinition is trivial. */ +/* Returns non-zero if a macro redefinition warning is required. */ static int -check_macro_redefinition (pfile, node, macro2) +warn_of_redefinition (pfile, node, macro2) cpp_reader *pfile; const cpp_hashnode *node; const cpp_macro *macro2; @@ -1188,9 +1176,15 @@ check_macro_redefinition (pfile, node, macro2) const cpp_macro *macro1; unsigned int i; - if (node->type != NT_MACRO || node->flags & NODE_BUILTIN) - return ! pfile->done_initializing; + /* Some redefinitions need to be warned about regardless. */ + if (node->flags & NODE_WARN) + return 1; + if (! CPP_PEDANTIC (pfile)) + return 0; + + /* Redefinition of a macro is allowed if and only if the old and new + definitions are the same. (6.10.3 paragraph 2). */ macro1 = node->value.macro; /* The quick failures. */ @@ -1198,19 +1192,19 @@ check_macro_redefinition (pfile, node, macro2) || macro1->paramc != macro2->paramc || macro1->fun_like != macro2->fun_like || macro1->variadic != macro2->variadic) - return 0; + return 1; /* Check each token. */ for (i = 0; i < macro1->count; i++) if (! _cpp_equiv_tokens (¯o1->expansion[i], ¯o2->expansion[i])) - return 0; + return 1; /* Check parameter spellings. */ for (i = 0; i < macro1->paramc; i++) if (macro1->params[i] != macro2->params[i]) - return 0; + return 1; - return 1; + return 0; } /* Free the definition of hashnode H. */ @@ -1472,19 +1466,15 @@ _cpp_create_definition (pfile, node) /* Commit the memory. */ POOL_COMMIT (&pfile->macro_pool, macro->count * sizeof (cpp_token)); - /* Redefinition of a macro is allowed if and only if the old and new - definitions are the same. (6.10.3 paragraph 2). */ if (node->type != NT_VOID) { - if (CPP_PEDANTIC (pfile) - && !check_macro_redefinition (pfile, node, macro)) + if (warn_of_redefinition (pfile, node, macro)) { cpp_pedwarn_with_line (pfile, pfile->directive_pos.line, pfile->directive_pos.col, "\"%s\" redefined", node->name); - if (pfile->done_initializing && node->type == NT_MACRO - && !(node->flags & NODE_BUILTIN)) + if (node->type == NT_MACRO && !(node->flags & NODE_BUILTIN)) cpp_pedwarn_with_file_and_line (pfile, node->value.macro->file, node->value.macro->line, 1, @@ -1496,6 +1486,8 @@ _cpp_create_definition (pfile, node) /* Enter definition in hash table. */ node->type = NT_MACRO; node->value.macro = macro; + if (! ustrncmp (node->name, DSC ("__STDC_"))) + node->flags |= NODE_WARN; cleanup: |