From: Richard Kenner Date: Thu, 23 Jun 1994 21:39:11 +0000 (-0400) Subject: (clear_binding_level): Add missing fields in initializer. X-Git-Tag: misc/cutover-egcs-0~6404 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=014aa47e1e4d76db5f974efe51068d61ec5d176d;p=thirdparty%2Fgcc.git (clear_binding_level): Add missing fields in initializer. (c_decode_option): Correct misspelling of -fno-dollars-in-identifiers. From-SVN: r7539 --- diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 44face4730b9..680f226f27d2 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -377,7 +377,8 @@ static struct binding_level *global_binding_level; /* Binding level structures are initialized by copying this one. */ static struct binding_level clear_binding_level - = {NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0}; + = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, 0, + NULL}; /* Nonzero means unconditionally make a BLOCK for the next level pushed. */ @@ -560,7 +561,7 @@ c_decode_option (p) dollars_in_ident = 1; #endif } - else if (!strcmp (p, "-fnodollars-in-identifiers")) + else if (!strcmp (p, "-fno-dollars-in-identifiers")) dollars_in_ident = 0; else if (!strcmp (p, "-fsigned-char")) flag_signed_char = 1;