revert: c-opts.c (c_common_handle_option): Make DOLLARS_IN_IDENTIFIERS apply to assembly language, too.

2007-07-08  Sandra Loosemore  <sandra@codesourcery.com>

	Revert this patch:
	2007-07-06  Sandra Loosemore  <sandra@codesourcery.com>

	* 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: r126458
This commit is contained in:
Sandra Loosemore 2007-07-08 09:46:20 -04:00 committed by Sandra Loosemore
parent 1cd13fb851
commit 170ea7b948
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,12 @@
2007-07-08 Sandra Loosemore <sandra@codesourcery.com>
Revert this patch:
2007-07-06 Sandra Loosemore <sandra@codesourcery.com>
* c-opts.c (c_common_handle_option): Make DOLLARS_IN_IDENTIFIERS
apply to assembly language, too.
* doc/tm.texi (DOLLARS_IN_IDENTIFIERS): Update.
2007-07-07 Daniel Berlin <dberlin@dberlin.org>
Revert (note the sccvn portions are *not* reverted)

View File

@ -883,6 +883,7 @@ 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:

View File

@ -9774,7 +9774,7 @@ previous value.
@defmac DOLLARS_IN_IDENTIFIERS
Define this macro to control use of the character @samp{$} in
identifier names. 0 means @samp{$} is
identifier names for the C family of languages. 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