diff options
Diffstat (limited to 'contrib/gcc/cpphash.c')
-rw-r--r-- | contrib/gcc/cpphash.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/gcc/cpphash.c b/contrib/gcc/cpphash.c index 69e1a23..98d51be 100644 --- a/contrib/gcc/cpphash.c +++ b/contrib/gcc/cpphash.c @@ -37,7 +37,7 @@ alloc_node (table) hash_table *table; { cpp_hashnode *node; - + node = (cpp_hashnode *) obstack_alloc (&table->pfile->hash_ob, sizeof (cpp_hashnode)); memset ((PTR) node, 0, sizeof (cpp_hashnode)); @@ -72,7 +72,6 @@ _cpp_init_hashtable (pfile, table) s->n_defined = cpp_lookup (pfile, DSC("defined")); s->n_true = cpp_lookup (pfile, DSC("true")); s->n_false = cpp_lookup (pfile, DSC("false")); - s->n__STRICT_ANSI__ = cpp_lookup (pfile, DSC("__STRICT_ANSI__")); s->n__VA_ARGS__ = cpp_lookup (pfile, DSC("__VA_ARGS__")); s->n__VA_ARGS__->flags |= NODE_DIAGNOSTIC; } |