diff options
author | Gerald Pfeifer <gerald@pfeifer.com> | 2024-05-26 23:48:36 +0200 |
---|---|---|
committer | Gerald Pfeifer <gerald@pfeifer.com> | 2024-05-26 23:48:36 +0200 |
commit | 53d919873c56cec0e7354907e8da3d8dba158a69 (patch) | |
tree | 4f04365b71fff7704ee21d19ac115fc856486b76 /gcc | |
parent | 95660223c434000a42957cf6cabed0236bb4bae8 (diff) | |
download | gcc-53d919873c56cec0e7354907e8da3d8dba158a69.zip gcc-53d919873c56cec0e7354907e8da3d8dba158a69.tar.gz gcc-53d919873c56cec0e7354907e8da3d8dba158a69.tar.bz2 |
doc: Quote singular '=' signs
gcc:
* doc/extend.texi (Attribute Syntax): Use @samp{=} instead of @code{=}.
(Extended Asm): Ditto.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/doc/extend.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 8786249..00449bd 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -10026,7 +10026,7 @@ labelled in C90 or C99, so the ambiguity does not arise there. @subsubheading Enumerator Attributes In GNU C, an attribute specifier list may appear as part of an enumerator. -The attribute goes after the enumeration constant, before @code{=}, if +The attribute goes after the enumeration constant, before @samp{=}, if present. The optional attribute in the enumerator appertains to the enumeration constant. It is not possible to place the attribute after the constant expression, if present. @@ -10108,7 +10108,7 @@ the @code{noreturn} attribute applies to all the functions declared; the @code{format} attribute only applies to @code{d1}. An attribute specifier list may appear immediately before the comma, -@code{=} or semicolon terminating the declaration of an identifier other +@samp{=}, or semicolon terminating the declaration of an identifier other than a function definition. Such attribute specifiers apply to the declared object or function. Where an assembler name for an object or function is specified (@pxref{Asm @@ -11804,7 +11804,7 @@ stop: The following artificial example shows an @code{asm goto} that sets up an output only on one path inside the @code{asm goto}. Usage of -constraint modifier @code{=} instead of @code{+} would be wrong as +constraint modifier @samp{=} instead of @samp{+} would be wrong as @code{factor} is used on all paths from the @code{asm goto}. @example |