From: Richard Stallman Date: Fri, 25 Jun 1993 18:01:20 +0000 (+0000) Subject: (c_decode_option): Handle -fdollars-in-identifiers. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a419ff54d6e137d2f7f9c296b4d056d6b30a4df8;p=gcc.git (c_decode_option): Handle -fdollars-in-identifiers. From-SVN: r4728 --- diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 08f003e1f0e..d7001b99138 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -540,6 +540,14 @@ c_decode_option (p) flag_writable_strings = 0; dollars_in_ident = DOLLARS_IN_IDENTIFIERS > 1; } + else if (!strcmp (p, "-fdollars-in-identifiers")) + { +#if DOLLARS_IN_IDENTIFIERS > 0 + dollars_in_ident = 1; +#endif + } + else if (!strcmp (p, "-fnodollars-in-identifiers")) + dollars_in_ident = 0; else if (!strcmp (p, "-fsigned-char")) flag_signed_char = 1; else if (!strcmp (p, "-funsigned-char"))