OSDN Git Service

(c_decode_option): Handle -fdollars-in-identifiers.
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 25 Jun 1993 18:01:20 +0000 (18:01 +0000)
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 25 Jun 1993 18:01:20 +0000 (18:01 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4728 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/c-decl.c

index 08f003e..d7001b9 100644 (file)
@@ -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"))