c-opts.c (c_common_handle_option): Make DOLLARS_IN_IDENTIFIERS apply to assembly...
authorSandra Loosemore <sandra@gcc.gnu.org>
Fri, 6 Jul 2007 22:08:40 +0000 (18:08 -0400)
committerSandra Loosemore <sandra@gcc.gnu.org>
Fri, 6 Jul 2007 22:08:40 +0000 (18:08 -0400)
2007-07-06  Sandra Loosemore  <sandra@codesourcery.com>

gcc/
* c-opts.c (c_common_handle_option): Make DOLLARS_IN_IDENTIFIERS
apply to assembly language, too.
* doc/tm.texi (DOLLARS_IN_IDENTIFIERS): Update.

From-SVN: r126427

gcc/c-opts.c
gcc/doc/tm.texi

index d0fafc6f9dbcd740b7541d0f9bccf2d630b50fcd..497a36db85dca0ae3f0c369d4244f352bce2ac84 100644 (file)
@@ -883,7 +883,6 @@ c_common_handle_option (size_t scode, const char *arg, int value)
 
     case OPT_lang_asm:
       cpp_set_lang (parse_in, CLK_ASM);
-      cpp_opts->dollars_in_ident = false;
       break;
 
     case OPT_lang_fortran:
index 3a66303a5d922107207bd396e589bda344244599..8322910c649f7958e3d515c9e28c7c88aa880a13 100644 (file)
@@ -9774,7 +9774,7 @@ previous value.
 
 @defmac DOLLARS_IN_IDENTIFIERS
 Define this macro to control use of the character @samp{$} in
-identifier names for the C family of languages.  0 means @samp{$} is
+identifier names.  0 means @samp{$} is
 not allowed by default; 1 means it is allowed.  1 is the default;
 there is no need to define this macro in that case.
 @end defmac