mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 14:59:31 +08:00
Remove '/' from comment_chars for FreeBSD so divide operator works.
Fix as.1 typo.
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
2000-04-26 David O'Brien <obrien@FreeBSD.org>
|
||||||
|
|
||||||
|
* doc/as.1: Fix unbalanced brackets.
|
||||||
|
|
||||||
|
* config/tc-i386.c (comment_chars): Don't use '/' as comment start if
|
||||||
|
TE_FreeBSD.
|
||||||
|
(line_comment_chars): Set to '/' if TE_FreeBSD.
|
||||||
|
|
||||||
Tue Apr 25 11:02:02 2000 Jeffrey A Law (law@cygnus.com)
|
Tue Apr 25 11:02:02 2000 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
* configure.in: Configury support for PA64 (currently disabled).
|
* configure.in: Configury support for PA64 (currently disabled).
|
||||||
|
@ -144,7 +144,7 @@ const char extra_symbol_chars[] = "*%-(";
|
|||||||
|
|
||||||
/* This array holds the chars that always start a comment. If the
|
/* This array holds the chars that always start a comment. If the
|
||||||
pre-processor is disabled, these aren't very useful */
|
pre-processor is disabled, these aren't very useful */
|
||||||
#if defined (TE_I386AIX) || ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) && ! defined (TE_LINUX))
|
#if defined (TE_I386AIX) || ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) && !defined (TE_LINUX) && !defined(TE_FreeBSD))
|
||||||
/* Putting '/' here makes it impossible to use the divide operator.
|
/* Putting '/' here makes it impossible to use the divide operator.
|
||||||
However, we need it for compatibility with SVR4 systems. */
|
However, we need it for compatibility with SVR4 systems. */
|
||||||
const char comment_chars[] = "#/";
|
const char comment_chars[] = "#/";
|
||||||
@ -162,7 +162,7 @@ const char comment_chars[] = "#";
|
|||||||
#NO_APP at the beginning of its output. */
|
#NO_APP at the beginning of its output. */
|
||||||
/* Also note that comments started like this one will always work if
|
/* Also note that comments started like this one will always work if
|
||||||
'/' isn't otherwise defined. */
|
'/' isn't otherwise defined. */
|
||||||
#if defined (TE_I386AIX) || ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) && ! defined (TE_LINUX))
|
#if defined (TE_I386AIX) || ((defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) && !defined (TE_LINUX) && !defined(TE_FreeBSD))
|
||||||
const char line_comment_chars[] = "";
|
const char line_comment_chars[] = "";
|
||||||
#else
|
#else
|
||||||
const char line_comment_chars[] = "/";
|
const char line_comment_chars[] = "/";
|
||||||
@ -4231,7 +4231,7 @@ md_parse_option (c, arg)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'q':
|
case 'q':
|
||||||
/* -q: On i386 Solaris, this tells the native assembler does
|
/* -q: On i386 Solaris, this tells the native assembler to do
|
||||||
fewer checks. */
|
fewer checks. */
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
@ -9,7 +9,7 @@ GNU as \- the portable GNU assembler.
|
|||||||
.na
|
.na
|
||||||
.B as
|
.B as
|
||||||
.RB "[\|" \-a "[\|" dhlns "\|]" \c
|
.RB "[\|" \-a "[\|" dhlns "\|]" \c
|
||||||
\&\[\|\=\c
|
\&[\|\=\c
|
||||||
.I file\c
|
.I file\c
|
||||||
\&\|]\|]
|
\&\|]\|]
|
||||||
.RB "[\|" \-D "\|]"
|
.RB "[\|" \-D "\|]"
|
||||||
|
Reference in New Issue
Block a user