This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch, doc] copy-edit inline asm sections


It looks to me like that, when the rewrite of the inline asm sections was committed last May (r210273), there was general agreement that it needed additional copy-editing to fix markup problems and the like. But, nobody ever followed up to do that.

Here's my attempt. In addition to fixing markup and capitalization, I've moved things around a little bit to improve the flow, and rephrased a few things that I thought were awkward or confusing. I propose to commit this in a few days unless somebody tells me meanwhile that I've broken something.... there's no doubt a lot more that could be done to improve this section further, but I hope this is at least an incremental improvement.

-Sandra


2015-02-05  Sandra Loosemore  <sandra@codesourcery.com>

	gcc/
	* doc/extend.texi (Function Attributes [naked]): Copy-edit.
	(Using Assembly Language with C): Expand introduction.
	(Basic Asm): Copy-edit.
	(Extended Asm): Likewise.
	(Global Reg Vars): Likewise.
	(Local Reg Vars): Likewise.

Index: gcc/doc/extend.texi
===================================================================
--- gcc/doc/extend.texi	(revision 220340)
+++ gcc/doc/extend.texi	(working copy)
@@ -3396,10 +3396,10 @@ This attribute is available on the ARM, 
 RL78, RX and SPU ports.  It allows the compiler to construct the
 requisite function declaration, while allowing the body of the
 function to be assembly code. The specified function will not have
-prologue/epilogue sequences generated by the compiler. Only Basic
+prologue/epilogue sequences generated by the compiler. Only basic
 @code{asm} statements can safely be included in naked functions
-(@pxref{Basic Asm}). While using Extended @code{asm} or a mixture of
-Basic @code{asm} and ``C'' code may appear to work, they cannot be
+(@pxref{Basic Asm}). While using extended @code{asm} or a mixture of
+basic @code{asm} and C code may appear to work, they cannot be
 depended upon to work reliably and are not supported.
 
 @item near
@@ -6382,12 +6382,25 @@ access hardware.
 
 @node Using Assembly Language with C
 @section How to Use Inline Assembly Language in C Code
+@cindex @code{asm} keyword
+@cindex assembly language in C
+@cindex inline assembly language
+@cindex mixing assembly language and C
+
+The @code{asm} keyword allows you to embed assembler instructions
+within C code.  GCC provides two forms of inline @code{asm}
+statements.  A @dfn{basic @code{asm}} statement is one with no
+operands (@pxref{Basic Asm}), while an @dfn{extended @code{asm}}
+statement (@pxref{Extended Asm}) includes one or more operands.  
+The extended form is preferred for mixing C and assembly language
+within a function, but if you want to include assembly language at
+top level you must use basic @code{asm}.
 
-GCC provides various extensions that allow you to embed assembler within 
-C code.
+You can also use the @code{asm} keyword to override the assembler name
+for a C symbol, or to place a C variable in a specific register.
 
 @menu
-* Basic Asm::          Inline assembler with no operands.
+* Basic Asm::          Inline assembler without operands.
 * Extended Asm::       Inline assembler with operands.
 * Constraints::        Constraints for @code{asm} operands
 * Asm Labels::         Specifying the assembler name to use for a C symbol.
@@ -6396,92 +6409,93 @@ C code.
 @end menu
 
 @node Basic Asm
-@subsection Basic Asm --- Assembler Instructions with No Operands
+@subsection Basic Asm --- Assembler Instructions Without Operands
 @cindex basic @code{asm}
+@cindex assembly language in C, basic
 
-The @code{asm} keyword allows you to embed assembler instructions within 
-C code.
+A basic @code{asm} statement has the following syntax:
 
 @example
-asm [ volatile ] ( AssemblerInstructions )
+asm @r{[} volatile @r{]} ( @var{AssemblerInstructions} )
 @end example
 
-To create headers compatible with ISO C, write @code{__asm__} instead of 
+The @code{asm} keyword is a GNU extension.
+When writing code that can be compiled with @option{-ansi} and the
+various @option{-std} options, use @code{__asm__} instead of 
 @code{asm} (@pxref{Alternate Keywords}).
 
-By definition, a Basic @code{asm} statement is one with no operands. 
-@code{asm} statements that contain one or more colons (used to delineate 
-operands) are considered to be Extended (for example, @code{asm("int $3")} 
-is Basic, and @code{asm("int $3" : )} is Extended). @xref{Extended Asm}.
-
 @subsubheading Qualifiers
-@emph{volatile}
-@*
-This optional qualifier has no effect. All Basic @code{asm} blocks are 
-implicitly volatile.
+@table @code
+@item volatile
+The optional @code{volatile} qualifier has no effect. 
+All basic @code{asm} blocks are implicitly volatile.
+@end table
 
 @subsubheading Parameters
-@emph{AssemblerInstructions}
-@*
+@table @var
+
+@item AssemblerInstructions
 This is a literal string that specifies the assembler code. The string can 
 contain any instructions recognized by the assembler, including directives. 
 GCC does not parse the assembler instructions themselves and 
 does not know what they mean or even whether they are valid assembler input. 
-The compiler copies it verbatim to the assembly language output file, without 
-processing dialects or any of the "%" operators that are available with
-Extended @code{asm}. This results in minor differences between Basic 
-@code{asm} strings and Extended @code{asm} templates. For example, to refer to 
-registers you might use %%eax in Extended @code{asm} and %eax in Basic 
-@code{asm}.
 
 You may place multiple assembler instructions together in a single @code{asm} 
 string, separated by the characters normally used in assembly code for the 
 system. A combination that works in most places is a newline to break the 
-line, plus a tab character (written as "\n\t").
+line, plus a tab character (written as @samp{\n\t}).
 Some assemblers allow semicolons as a line separator. However, 
 note that some assembler dialects use semicolons to start a comment. 
+@end table
+
+@subsubheading Remarks
+Using extended @code{asm} typically produces smaller, safer, and more
+efficient code, and in most cases it is a better solution than basic
+@code{asm}.  Extended @code{asm} statements have to be inside a C
+function, so when writing inline assembly language outside of C
+functions you must use basic @code{asm}.  Functions declared
+with the @code{naked} attribute also require basic @code{asm}
+(@pxref{Function Attributes}).
+
+Safely accessing C data and calling functions from basic @code{asm} is more 
+complex than it may appear. To access C data, it is better to use extended 
+@code{asm}.
 
 Do not expect a sequence of @code{asm} statements to remain perfectly 
 consecutive after compilation. If certain instructions need to remain 
-consecutive in the output, put them in a single multi-instruction asm 
+consecutive in the output, put them in a single multi-instruction @code{asm}
 statement. Note that GCC's optimizers can move @code{asm} statements 
 relative to other code, including across jumps.
 
 @code{asm} statements may not perform jumps into other @code{asm} statements. 
 GCC does not know about these jumps, and therefore cannot take 
 account of them when deciding how to optimize. Jumps from @code{asm} to C 
-labels are only supported in Extended @code{asm}.
-
-@subsubheading Remarks
-Using Extended @code{asm} will typically produce smaller, safer, and more 
-efficient code, and in most cases it is a better solution. When writing 
-inline assembly language outside of C functions, however, you must use Basic 
-@code{asm}. Extended @code{asm} statements have to be inside a C function.
-Functions declared with the @code{naked} attribute also require Basic 
-@code{asm} (@pxref{Function Attributes}).
+labels are only supported in extended @code{asm}.
 
 Under certain circumstances, GCC may duplicate (or remove duplicates of) your 
 assembly code when optimizing. This can lead to unexpected duplicate 
 symbol errors during compilation if your assembly code defines symbols or 
 labels.
 
-Safely accessing C data and calling functions from Basic @code{asm} is more 
-complex than it may appear. To access C data, it is better to use Extended 
-@code{asm}.
-
-Since GCC does not parse the AssemblerInstructions, it has no 
+Since GCC does not parse the assembler instructions, it has no 
 visibility of any symbols it references. This may result in GCC discarding 
 those symbols as unreferenced.
 
-Unlike Extended @code{asm}, all Basic @code{asm} blocks are implicitly 
-volatile. @xref{Volatile}.  Similarly, Basic @code{asm} blocks are not treated 
-as though they used a "memory" clobber (@pxref{Clobbers}).
-
-All Basic @code{asm} blocks use the assembler dialect specified by the 
-@option{-masm} command-line option. Basic @code{asm} provides no
+The compiler copies the assembler instructions in a basic @code{asm} 
+verbatim to the assembly language output file, without 
+processing dialects or any of the @samp{%} operators that are available with
+extended @code{asm}. This results in minor differences between basic 
+@code{asm} strings and extended @code{asm} templates. For example, to refer to 
+registers you might use @samp{%eax} in basic @code{asm} and
+@samp{%%eax} in extended @code{asm}.
+
+On targets such as x86 that support multiple assembler dialects,
+all basic @code{asm} blocks use the assembler dialect specified by the 
+@option{-masm} command-line option (@pxref{x86 Options}).  
+Basic @code{asm} provides no
 mechanism to provide different assembler strings for different dialects.
 
-Here is an example of Basic @code{asm} for i386:
+Here is an example of basic @code{asm} for i386:
 
 @example
 /* Note that this code will not compile with -masm=intel */
@@ -6490,85 +6504,75 @@ Here is an example of Basic @code{asm} f
 
 @node Extended Asm
 @subsection Extended Asm - Assembler Instructions with C Expression Operands
-@cindex @code{asm} keyword
 @cindex extended @code{asm}
-@cindex assembler instructions
+@cindex assembly language in C, extended
 
-The @code{asm} keyword allows you to embed assembler instructions within C 
-code. With Extended @code{asm} you can read and write C variables from 
-assembler and perform jumps from assembler code to C labels.
+With extended @code{asm} you can read and write C variables from 
+assembler and perform jumps from assembler code to C labels.  
+Extended @code{asm} syntax uses colons (@samp{:}) to delimit
+the operand parameters after the assembler template:
 
 @example
-@ifhtml
-asm [volatile] ( AssemblerTemplate : [OutputOperands] [ : [InputOperands] [ : [Clobbers] ] ] )
+asm @r{[}volatile@r{]} ( @var{AssemblerTemplate} 
+                 : @var{OutputOperands} 
+                 @r{[} : @var{InputOperands}
+                 @r{[} : @var{Clobbers} @r{]} @r{]})
 
-asm [volatile] goto ( AssemblerTemplate : : [InputOperands] : [Clobbers] : GotoLabels )
-@end ifhtml
-@ifnothtml
-asm [volatile] ( AssemblerTemplate 
-                 : [OutputOperands] 
-                 [ : [InputOperands] 
-                 [ : [Clobbers] ] ])
-
-asm [volatile] goto ( AssemblerTemplate 
+asm @r{[}volatile@r{]} goto ( @var{AssemblerTemplate} 
                       : 
-                      : [InputOperands] 
-                      : [Clobbers] 
-                      : GotoLabels)
-@end ifnothtml
+                      : @var{InputOperands}
+                      : @var{Clobbers}
+                      : @var{GotoLabels})
 @end example
 
-To create headers compatible with ISO C, write @code{__asm__} instead of 
-@code{asm} and @code{__volatile__} instead of @code{volatile} 
-(@pxref{Alternate Keywords}). There is no alternate for @code{goto}.
-
-By definition, Extended @code{asm} is an @code{asm} statement that contains 
-operands. To separate the classes of operands, you use colons. Basic 
-@code{asm} statements contain no colons. (So, for example, 
-@code{asm("int $3")} is Basic @code{asm}, and @code{asm("int $3" : )} is 
-Extended @code{asm}. @pxref{Basic Asm}.)
+The @code{asm} keyword is a GNU extension.
+When writing code that can be compiled with @option{-ansi} and the
+various @option{-std} options, use @code{__asm__} instead of 
+@code{asm} (@pxref{Alternate Keywords}).
 
 @subsubheading Qualifiers
-@emph{volatile}
-@*
-The typical use of Extended @code{asm} statements is to manipulate input 
+@table @code
+
+@item volatile
+The typical use of extended @code{asm} statements is to manipulate input 
 values to produce output values. However, your @code{asm} statements may 
 also produce side effects. If so, you may need to use the @code{volatile} 
 qualifier to disable certain optimizations. @xref{Volatile}.
 
-@emph{goto}
-@*
+@item goto
 This qualifier informs the compiler that the @code{asm} statement may 
-perform a jump to one of the labels listed in the GotoLabels section. 
+perform a jump to one of the labels listed in the @var{GotoLabels}.
 @xref{GotoLabels}.
+@end table
 
 @subsubheading Parameters
-@emph{AssemblerTemplate}
-@*
-This is a literal string that contains the assembler code. It is a 
+@table @var
+@item AssemblerTemplate
+This is a literal string that is the template for the assembler code. It is a 
 combination of fixed text and tokens that refer to the input, output, 
 and goto parameters. @xref{AssemblerTemplate}.
 
-@emph{OutputOperands}
-@*
+@item OutputOperands
 A comma-separated list of the C variables modified by the instructions in the 
-AssemblerTemplate. @xref{OutputOperands}.
+@var{AssemblerTemplate}.  An empty list is permitted.  @xref{OutputOperands}.
 
-@emph{InputOperands}
-@*
+@item InputOperands
 A comma-separated list of C expressions read by the instructions in the 
-AssemblerTemplate. @xref{InputOperands}.
+@var{AssemblerTemplate}.  An empty list is permitted.  @xref{InputOperands}.
 
-@emph{Clobbers}
-@*
+@item Clobbers
 A comma-separated list of registers or other values changed by the 
-AssemblerTemplate, beyond those listed as outputs. @xref{Clobbers}.
+@var{AssemblerTemplate}, beyond those listed as outputs.
+An empty list is permitted.  @xref{Clobbers}.
 
-@emph{GotoLabels}
-@*
+@item GotoLabels
 When you are using the @code{goto} form of @code{asm}, this section contains 
-the list of all C labels to which the AssemblerTemplate may jump. 
+the list of all C labels to which the code in the 
+@var{AssemblerTemplate} may jump. 
 @xref{GotoLabels}.
+@end table
+
+The total number of input + output + goto operands is limited to 30.
 
 @subsubheading Remarks
 The @code{asm} statement allows you to include assembly instructions directly 
@@ -6576,9 +6580,9 @@ within C code. This may help you to maxi
 code or to access assembly instructions that are not readily available to C 
 programs.
 
-Note that Extended @code{asm} statements must be inside a function. Only 
-Basic @code{asm} may be outside functions (@pxref{Basic Asm}).
-Functions declared with the @code{naked} attribute also require Basic 
+Note that extended @code{asm} statements must be inside a function. Only 
+basic @code{asm} may be outside functions (@pxref{Basic Asm}).
+Functions declared with the @code{naked} attribute also require basic 
 @code{asm} (@pxref{Function Attributes}).
 
 While the uses of @code{asm} are many and varied, it may help to think of an 
@@ -6598,7 +6602,7 @@ asm ("mov %1, %0\n\t"
 printf("%d\n", dst);
 @end example
 
-This code will copy @var{src} to @var{dst} and add 1 to @var{dst}.
+This code copies @code{src} to @code{dst} and add 1 to @code{dst}.
 
 @anchor{Volatile}
 @subsubsection Volatile
@@ -6610,13 +6614,12 @@ there is no need for the output variable
 code out of loops if they believe that the code will always return the same 
 result (i.e. none of its input values change between calls). Using the 
 @code{volatile} qualifier disables these optimizations. @code{asm} statements 
-that have no output operands are implicitly volatile.
-
-Examples:
+that have no output operands, including @code{asm goto} statements, 
+are implicitly volatile.
 
 This i386 code demonstrates a case that does not use (or require) the 
 @code{volatile} qualifier. If it is performing assertion checking, this code 
-uses @code{asm} to perform the validation. Otherwise, @var{dwRes} is 
+uses @code{asm} to perform the validation. Otherwise, @code{dwRes} is 
 unreferenced by any code. As a result, the optimizers can discard the 
 @code{asm} statement, which in turn removes the need for the entire 
 @code{DoCheck} routine. By omitting the @code{volatile} qualifier when it 
@@ -6639,7 +6642,7 @@ void DoCheck(uint32_t dwSomeValue)
 @end example
 
 The next example shows a case where the optimizers can recognize that the input 
-(@var{dwSomeValue}) never changes during the execution of the function and can 
+(@code{dwSomeValue}) never changes during the execution of the function and can 
 therefore move the @code{asm} outside the loop to produce more efficient code. 
 Again, using @code{volatile} disables this type of optimization.
 
@@ -6662,7 +6665,8 @@ void do_print(uint32_t dwSomeValue)
 @end example
 
 The following example demonstrates a case where you need to use the 
-@code{volatile} qualifier. It uses the x86 RDTSC instruction, which reads 
+@code{volatile} qualifier. 
+It uses the x86 @code{rdtsc} instruction, which reads 
 the computer's time-stamp counter. Without the @code{volatile} qualifier, 
 the optimizers might assume that the @code{asm} block will always return the 
 same value and therefore optimize away the second call.
@@ -6692,7 +6696,7 @@ asm volatile ( "rdtsc\n\t"    // Returns
 printf("msr: %llx\n", msr);
 @end example
 
-GCC's optimizers will not treat this code like the non-volatile code in the 
+GCC's optimizers do not treat this code like the non-volatile code in the 
 earlier examples. They do not move it out of loops or omit it on the 
 assumption that the result from a previous call is still valid.
 
@@ -6700,7 +6704,7 @@ Note that the compiler can move even vol
 to other code, including across jump instructions. For example, on many 
 targets there is a system register that controls the rounding mode of 
 floating-point operations. Setting it with a volatile @code{asm}, as in the 
-following PowerPC example, will not work reliably.
+following PowerPC example, does not work reliably.
 
 @example
 asm volatile("mtfsf 255, %0" : : "f" (fpenv));
@@ -6718,16 +6722,18 @@ sum = x + y;
 
 Under certain circumstances, GCC may duplicate (or remove duplicates of) your 
 assembly code when optimizing. This can lead to unexpected duplicate symbol 
-errors during compilation if your asm code defines symbols or labels. Using %= 
+errors during compilation if your asm code defines symbols or labels. 
+Using @samp{%=} 
 (@pxref{AssemblerTemplate}) may help resolve this problem.
 
 @anchor{AssemblerTemplate}
 @subsubsection Assembler Template
 @cindex @code{asm} assembler template
 
-An assembler template is a literal string containing assembler instructions. 
-The compiler will replace any references to inputs, outputs, and goto labels 
-in the template, and then output the resulting string to the assembler. The 
+An assembler template is a literal string containing assembler instructions.
+The compiler replaces tokens in the template that refer 
+to inputs, outputs, and goto labels,
+and then outputs the resulting string to the assembler. The 
 string can contain any instructions recognized by the assembler, including 
 directives. GCC does not parse the assembler instructions 
 themselves and does not know what they mean or even whether they are valid 
@@ -6738,7 +6744,8 @@ You may place multiple assembler instruc
 string, separated by the characters normally used in assembly code for the 
 system. A combination that works in most places is a newline to break the 
 line, plus a tab character to move to the instruction field (written as 
-"\n\t"). Some assemblers allow semicolons as a line separator. However, note 
+@samp{\n\t}). 
+Some assemblers allow semicolons as a line separator. However, note 
 that some assembler dialects use semicolons to start a comment. 
 
 Do not expect a sequence of @code{asm} statements to remain perfectly 
@@ -6751,20 +6758,37 @@ by using global symbols directly from th
 expected. Similarly, calling functions directly from an assembler template 
 requires a detailed understanding of the target assembler and ABI.
 
-Since GCC does not parse the AssemblerTemplate, it has no visibility of any 
+Since GCC does not parse the assembler template,
+it has no visibility of any 
 symbols it references. This may result in GCC discarding those symbols as 
 unreferenced unless they are also listed as input, output, or goto operands.
 
-GCC can support multiple assembler dialects (for example, GCC for x86 
-supports "att" and "intel" dialects) for inline assembler. In builds that 
-support this capability, the @option{-masm} option controls which dialect 
-GCC uses as its default. The hardware-specific documentation for the 
+@subsubheading Special format strings
+
+In addition to the tokens described by the input, output, and goto operands, 
+these tokens have special meanings in the assembler template:
+
+@table @samp
+@item %% 
+Outputs a single @samp{%} into the assembler code.
+
+@item %= 
+Outputs a number that is unique to each instance of the @code{asm} 
+statement in the entire compilation. This option is useful when creating local 
+labels and referring to them multiple times in a single template that 
+generates multiple assembler instructions. 
+@end table
+
+@subsubheading Multiple assembler dialects in @code{asm} templates
+
+On targets such as x86, GCC supports multiple assembler dialects.
+The @option{-masm} option controls which dialect GCC uses as its 
+default for inline assembler. The target-specific documentation for the 
 @option{-masm} option contains the list of supported dialects, as well as the 
 default dialect if the option is not specified. This information may be 
 important to understand, since assembler code that works correctly when 
 compiled using one dialect will likely fail if compiled using another.
-
-@subsubheading Using braces in @code{asm} templates
+@xref{x86 Options}.
 
 If your code needs to support multiple assembler dialects (for example, if 
 you are writing public headers that need to support a variety of compilation 
@@ -6774,23 +6798,26 @@ options), use constructs of this form:
 @{ dialect0 | dialect1 | dialect2... @}
 @end example
 
-This construct outputs 'dialect0' when using dialect #0 to compile the code, 
-'dialect1' for dialect #1, etc. If there are fewer alternatives within the 
+This construct outputs @code{dialect0} 
+when using dialect #0 to compile the code, 
+@code{dialect1} for dialect #1, etc. If there are fewer alternatives within the 
 braces than the number of dialects the compiler supports, the construct 
 outputs nothing.
 
-For example, if an x86 compiler supports two dialects (att, intel), an 
+For example, if an x86 compiler supports two dialects
+(@samp{att}, @samp{intel}), an 
 assembler template such as this:
 
 @example
 "bt@{l %[Offset],%[Base] | %[Base],%[Offset]@}; jc %l2"
 @end example
 
-would produce the output:
+@noindent
+is equivalent to one of
 
 @example
-For att: "btl %[Offset],%[Base] ; jc %l2"
-For intel: "bt %[Base],%[Offset]; jc %l2"
+"btl %[Offset],%[Base] ; jc %l2"   @r{/* att dialect */}
+"bt %[Base],%[Offset]; jc %l2"     @r{/* intel dialect */}
 @end example
 
 Using that same compiler, this code:
@@ -6799,34 +6826,19 @@ Using that same compiler, this code:
 "xchg@{l@}\t@{%%@}ebx, %1"
 @end example
 
-would produce 
+@noindent
+corresponds to either
 
 @example
-For att: "xchgl\t%%ebx, %1"
-For intel: "xchg\tebx, %1"
+"xchgl\t%%ebx, %1"                 @r{/* att dialect */}
+"xchg\tebx, %1"                    @r{/* intel dialect */}
 @end example
 
 There is no support for nesting dialect alternatives. Also, there is no 
-``escape'' for an open brace (@{), so do not use open braces in an Extended 
+``escape'' for an open brace (@samp{@{}), 
+so do not use open braces in an extended 
 @code{asm} template other than as a dialect indicator.
 
-@subsubheading Other format strings
-
-In addition to the tokens described by the input, output, and goto operands, 
-there are a few special cases:
-
-@itemize
-@item
-"%%" outputs a single "%" into the assembler code.
-
-@item
-"%=" outputs a number that is unique to each instance of the @code{asm} 
-statement in the entire compilation. This option is useful when creating local 
-labels and referring to them multiple times in a single template that 
-generates multiple assembler instructions. 
-
-@end itemize
-
 @anchor{OutputOperands}
 @subsubsection Output Operands
 @cindex @code{asm} output operands
@@ -6834,8 +6846,8 @@ generates multiple assembler instruction
 An @code{asm} statement has zero or more output operands indicating the names
 of C variables modified by the assembler code.
 
-In this i386 example, @var{old} (referred to in the template string as 
-@code{%0}) and @var{*Base} (as @code{%1}) are outputs and @var{Offset} 
+In this i386 example, @code{old} (referred to in the template string as 
+@code{%0}) and @code{*Base} (as @code{%1}) are outputs and @code{Offset} 
 (@code{%2}) is an input:
 
 @example
@@ -6850,53 +6862,57 @@ __asm__ ("btsl %2,%1\n\t" // Turn on zer
 return old;
 @end example
 
-Operands use this format:
+Operands are separated by commas.  Each operand has this format:
 
 @example
-[ [asmSymbolicName] ] "constraint" (cvariablename)
+@r{[} [@var{asmSymbolicName}] @r{]} @var{constraint} (@var{cvariablename})
 @end example
 
-@emph{asmSymbolicName}
-@*
-
-When not using asmSymbolicNames, use the (zero-based) position of the operand 
-in the list of operands in the assembler template. For example if there are 
-three output operands, use @code{%0} in the template to refer to the first, 
-@code{%1} for the second, and @code{%2} for the third. When using an 
-asmSymbolicName, reference it by enclosing the name in square brackets 
-(i.e. @code{%[Value]}). The scope of the name is the @code{asm} statement 
+@table @var
+@item asmSymbolicName
+Specifies a symbolic name for the operand.
+Reference the name in the assembler template 
+by enclosing it in square brackets 
+(i.e. @samp{%[Value]}). The scope of the name is the @code{asm} statement 
 that contains the definition. Any valid C variable name is acceptable, 
 including names already defined in the surrounding code. No two operands 
 within the same @code{asm} statement can use the same symbolic name.
 
-@emph{constraint}
-@*
-Output constraints must begin with either @code{"="} (a variable overwriting an 
-existing value) or @code{"+"} (when reading and writing). When using 
-@code{"="}, do not assume the location will contain the existing value (except 
-when tying the variable to an input; @pxref{InputOperands,,Input Operands}).
+When not using an @var{asmSymbolicName}, use the (zero-based) position
+of the operand 
+in the list of operands in the assembler template. For example if there are 
+three output operands, use @samp{%0} in the template to refer to the first, 
+@samp{%1} for the second, and @samp{%2} for the third. 
+
+@item constraint
+A string constant specifying constraints on the placement of the operand; 
+@xref{Constraints}, for details.
+
+Output constraints must begin with either @samp{=} (a variable overwriting an 
+existing value) or @samp{+} (when reading and writing). When using 
+@samp{=}, do not assume the location contains the existing value
+on entry to the @code{asm}, except 
+when the operand is tied to an input; @pxref{InputOperands,,Input Operands}.
 
 After the prefix, there must be one or more additional constraints 
 (@pxref{Constraints}) that describe where the value resides. Common 
-constraints include @code{"r"} for register and @code{"m"} for memory. 
-When you list more than one possible location (for example @code{"=rm"}), the 
-compiler chooses the most efficient one based on the current context. If you 
-list as many alternates as the @code{asm} statement allows, you will permit 
-the optimizers to produce the best possible code. If you must use a specific
-register, but your Machine Constraints do not provide sufficient 
-control to select the specific register you want, Local Reg Vars may provide 
-a solution (@pxref{Local Reg Vars}).
-
-@emph{cvariablename}
-@*
-Specifies the C variable name of the output (enclosed by parentheses). Accepts 
-any (non-constant) variable within scope.
-
-Remarks:
-
-The total number of input + output + goto operands has a limit of 30. Commas 
-separate the operands. When the compiler selects the registers to use to 
-represent the output operands, it will not use any of the clobbered registers 
+constraints include @samp{r} for register and @samp{m} for memory. 
+When you list more than one possible location (for example, @code{"=rm"}),
+the compiler chooses the most efficient one based on the current context. 
+If you list as many alternates as the @code{asm} statement allows, you permit 
+the optimizers to produce the best possible code. 
+If you must use a specific register, but your Machine Constraints do not
+provide sufficient control to select the specific register you want, 
+local register variables may provide a solution (@pxref{Local Reg Vars}).
+
+@item cvariablename
+Specifies a C lvalue expression to hold the output, typically a variable name.
+The enclosing parentheses are a required part of the syntax.
+
+@end table
+
+When the compiler selects the registers to use to 
+represent the output operands, it does not use any of the clobbered registers 
 (@pxref{Clobbers}).
 
 Output operand expressions must be lvalues. The compiler cannot check whether 
@@ -6906,12 +6922,12 @@ example a bit-field), the constraint mus
 uses the register as the output of the @code{asm}, and then stores that 
 register into the output. 
 
-Unless an output operand has the '@code{&}' constraint modifier 
-(@pxref{Modifiers}), GCC may allocate it in the same register as an unrelated 
-input operand, on the assumption that the assembler code will consume its 
+Use the @samp{&} constraint modifier (@pxref{Modifiers}) on output
+operands that must not overlap an input.  Otherwise, 
+GCC may allocate the output operand in the same register as an unrelated 
+input operand, on the assumption that the assembler code consumes its 
 inputs before producing outputs. This assumption may be false if the assembler 
-code actually consists of more than one instruction. In this case, use 
-'@code{&}' on each output operand that must not overlap an input.
+code actually consists of more than one instruction.
 
 The same problem can occur if one output parameter (@var{a}) allows a register 
 constraint and another output parameter (@var{b}) allows a memory constraint.
@@ -6920,13 +6936,13 @@ registers which @emph{might} be shared b
 registers to be inputs to the asm. As above, GCC assumes that such input
 registers are consumed before any outputs are written. This assumption may 
 result in incorrect behavior if the asm writes to @var{a} before using 
-@var{b}. Combining the `@code{&}' constraint with the register constraint 
-ensures that modifying @var{a} will not affect what address is referenced by 
-@var{b}. Omitting the `@code{&}' constraint means that the location of @var{b} 
-will be undefined if @var{a} is modified before using @var{b}.
+@var{b}. Combining the @samp{&} modifier with the register constraint on @var{a}
+ensures that modifying @var{a} does not affect the address referenced by 
+@var{b}. Otherwise, the location of @var{b} 
+is undefined if @var{a} is modified before using @var{b}.
 
-@code{asm} supports operand modifiers on operands (for example @code{%k2} 
-instead of simply @code{%2}). Typically these qualifiers are hardware 
+@code{asm} supports operand modifiers on operands (for example @samp{%k2} 
+instead of simply @samp{%2}). Typically these qualifiers are hardware 
 dependent. The list of supported modifiers for x86 is found at 
 @ref{x86Operandmodifiers,x86 Operand modifiers}.
 
@@ -6935,13 +6951,11 @@ operands, use @code{volatile} for the @c
 optimizers from discarding the @code{asm} statement as unneeded 
 (see @ref{Volatile}).
 
-Examples:
-
-This code makes no use of the optional asmSymbolicName. Therefore it 
+This code makes no use of the optional @var{asmSymbolicName}. Therefore it 
 references the first output operand as @code{%0} (were there a second, it 
 would be @code{%1}, etc). The number of the first input operand is one greater 
 than that of the last output operand. In this i386 example, that makes 
-@var{Mask} @code{%1}:
+@code{Mask} referenced as @code{%1}:
 
 @example
 uint32_t Mask = 1234;
@@ -6953,17 +6967,21 @@ uint32_t Index;
      : "cc");
 @end example
 
-That code overwrites the variable Index ("="), placing the value in a register 
-("r"). The generic "r" constraint instead of a constraint for a specific 
+That code overwrites the variable @code{Index} (@samp{=}),
+placing the value in a register (@samp{r}).
+Using the generic @samp{r} constraint instead of a constraint for a specific 
 register allows the compiler to pick the register to use, which can result 
 in more efficient code. This may not be possible if an assembler instruction 
 requires a specific register.
 
-The following i386 example uses the asmSymbolicName operand. It produces the 
+The following i386 example uses the @var{asmSymbolicName} syntax.
+It produces the 
 same result as the code above, but some may consider it more readable or more 
 maintainable since reordering index numbers is not necessary when adding or 
-removing operands. The names aIndex and aMask are only used to emphasize which 
-names get used where. It is acceptable to reuse the names Index and Mask.
+removing operands. The names @code{aIndex} and @code{aMask}
+are only used in this example to emphasize which 
+names get used where.
+It is acceptable to reuse the names @code{Index} and @code{Mask}.
 
 @example
 uint32_t Mask = 1234;
@@ -6987,61 +7005,67 @@ asm ("mov %[e], %[d]"
    : [e] "rm" (*e));
 @end example
 
-Here, @var{d} may either be in a register or in memory. Since the compiler 
-might already have the current value of the uint32_t pointed to by @var{e} 
+Here, @code{d} may either be in a register or in memory. Since the compiler 
+might already have the current value of the @code{uint32_t} location
+pointed to by @code{e}
 in a register, you can enable it to choose the best location
-for @var{d} by specifying both constraints.
+for @code{d} by specifying both constraints.
 
 @anchor{InputOperands}
 @subsubsection Input Operands
 @cindex @code{asm} input operands
 @cindex @code{asm} expressions
 
-Input operands make inputs from C variables and expressions available to the 
+Input operands make values from C variables and expressions available to the 
 assembly code.
 
 Specify input operands by using the format:
 
 @example
-[ [asmSymbolicName] ] "constraint" (cexpression)
+@r{[} [@var{asmSymbolicName}] @r{]} @var{constraint} (@var{cexpression})
 @end example
 
-@emph{asmSymbolicName}
-@*
-When not using asmSymbolicNames, use the (zero-based) position of the operand 
-in the list of operands, including outputs, in the assembler template. For 
-example, if there are two output parameters and three inputs, @code{%2} refers 
-to the first input, @code{%3} to the second, and @code{%4} to the third.
-When using an asmSymbolicName, reference it by enclosing the name in square 
-brackets (e.g. @code{%[Value]}). The scope of the name is the @code{asm} 
-statement that contains the definition. Any valid C variable name is 
-acceptable, including names already defined in the surrounding code. No two 
-operands within the same @code{asm} statement can use the same symbolic name.
-
-@emph{constraint}
-@*
-Input constraints must be a string containing one or more constraints 
-(@pxref{Constraints}). When you give more than one possible constraint 
-(for example, @code{"irm"}), the compiler will choose the most efficient 
-method based on the current context. Input constraints may not begin with 
-either "=" or "+". If you must use a specific register, but your Machine
-Constraints do not provide sufficient control to select the specific 
-register you want, Local Reg Vars may provide a solution 
-(@pxref{Local Reg Vars}).
+@table @var
+@item asmSymbolicName
+Specifies a symbolic name for the operand.o
+Reference the name in the assembler template 
+by enclosing it in square brackets 
+(i.e. @samp{%[Value]}). The scope of the name is the @code{asm} statement 
+that contains the definition. Any valid C variable name is acceptable, 
+including names already defined in the surrounding code. No two operands 
+within the same @code{asm} statement can use the same symbolic name.
+
+When not using an @var{asmSymbolicName}, use the (zero-based) position
+of the operand 
+in the list of operands in the assembler template. For example if there are 
+three output operands, use @samp{%0} in the template to refer to the first, 
+@samp{%1} for the second, and @samp{%2} for the third. 
+
+@item constraint
+A string constant specifying constraints on the placement of the operand; 
+@xref{Constraints}, for details.
+
+Input constraint strings may not begin with either @samp{=} or @samp{+}.
+When you list more than one possible location (for example, @samp{"irm"}), 
+the compiler chooses the most efficient one based on the current context.
+If you must use a specific register, but your Machine Constraints do not
+provide sufficient control to select the specific register you want, 
+local register variables may provide a solution (@pxref{Local Reg Vars}).
 
 Input constraints can also be digits (for example, @code{"0"}). This indicates 
-that the specified input will be in the same place as the output constraint 
-at the (zero-based) index in the output constraint list. When using 
-asmSymbolicNames for the output operands, you may use these names (enclosed 
-in brackets []) instead of digits.
+that the specified input must be in the same place as the output constraint 
+at the (zero-based) index in the output constraint list. 
+When using @var{asmSymbolicName} syntax for the output operands,
+you may use these names (enclosed in brackets @samp{[]}) instead of digits.
 
-@emph{cexpression}
-@*
+@item cexpression
 This is the C variable or expression being passed to the @code{asm} statement 
-as input.
+as input.  The enclosing parentheses are a required part of the syntax.
+
+@end table
 
 When the compiler selects the registers to use to represent the input 
-operands, it will not use any of the clobbered registers (@pxref{Clobbers}).
+operands, it does not use any of the clobbered registers (@pxref{Clobbers}).
 
 If there are no output operands but there are input operands, place two 
 consecutive colons where the output operands would go:
@@ -7054,8 +7078,9 @@ __asm__ ("some instructions"
 
 @strong{Warning:} Do @emph{not} modify the contents of input-only operands 
 (except for inputs tied to outputs). The compiler assumes that on exit from 
-the @code{asm} statement these operands will contain the same values as they 
-had before executing the assembler. It is @emph{not} possible to use Clobbers 
+the @code{asm} statement these operands contain the same values as they 
+had before executing the statement. 
+It is @emph{not} possible to use clobbers
 to inform the compiler that the values in these inputs are changing. One 
 common work-around is to tie the changing input variable to an output variable 
 that never gets used. Note, however, that if the code that follows the 
@@ -7063,23 +7088,17 @@ that never gets used. Note, however, tha
 optimizers may discard the @code{asm} statement as unneeded 
 (see @ref{Volatile}).
 
-Remarks:
-
-The total number of input + output + goto operands has a limit of 30.
-
-@code{asm} supports operand modifiers on operands (for example @code{%k2} 
-instead of simply @code{%2}). Typically these qualifiers are hardware 
+@code{asm} supports operand modifiers on operands (for example @samp{%k2} 
+instead of simply @samp{%2}). Typically these qualifiers are hardware 
 dependent. The list of supported modifiers for x86 is found at 
 @ref{x86Operandmodifiers,x86 Operand modifiers}.
 
-Examples:
-
 In this example using the fictitious @code{combine} instruction, the 
 constraint @code{"0"} for input operand 1 says that it must occupy the same 
 location as output operand 0. Only input operands may use numbers in 
 constraints, and they must each refer to an output operand. Only a number (or 
 the symbolic assembler name) in the constraint can guarantee that one operand 
-is in the same place as another. The mere fact that @var{foo} is the value of 
+is in the same place as another. The mere fact that @code{foo} is the value of 
 both operands is not enough to guarantee that they are in the same place in 
 the generated assembler code.
 
@@ -7102,24 +7121,24 @@ asm ("cmoveq %1, %2, %[result]" 
 @cindex @code{asm} clobbers
 
 While the compiler is aware of changes to entries listed in the output 
-operands, the assembler code may modify more than just the outputs. For 
+operands, the inline @code{asm} code may modify more than just the outputs. For 
 example, calculations may require additional registers, or the processor may 
 overwrite a register as a side effect of a particular assembler instruction. 
 In order to inform the compiler of these changes, list them in the clobber 
 list. Clobber list items are either register names or the special clobbers 
-(listed below). Each clobber list item is enclosed in double quotes and 
-separated by commas.
+(listed below). Each clobber list item is a string constant 
+enclosed in double quotes and separated by commas.
 
 Clobber descriptions may not in any way overlap with an input or output 
 operand. For example, you may not have an operand describing a register class 
 with one member when listing that register in the clobber list. Variables 
-declared to live in specific registers (@pxref{Explicit Reg Vars}), and used 
-as @code{asm} input or output operands, must have no part mentioned in the 
+declared to live in specific registers (@pxref{Explicit Reg Vars}) and used 
+as @code{asm} input or output operands must have no part mentioned in the 
 clobber description. In particular, there is no way to specify that input 
 operands get modified without also specifying them as output operands.
 
 When the compiler selects which registers to use to represent input and output 
-operands, it will not use any of the clobbered registers. As a result, 
+operands, it does not use any of the clobbered registers. As a result, 
 clobbered registers are available for any use in the assembler code.
 
 Here is a realistic example for the VAX showing the use of clobbered 
@@ -7127,75 +7146,84 @@ registers: 
 
 @example
 asm volatile ("movc3 %0, %1, %2"
-                   : /* No outputs. */
+                   : /* No outputs. /*
                    : "g" (from), "g" (to), "g" (count)
                    : "r0", "r1", "r2", "r3", "r4", "r5");
 @end example
 
 Also, there are two special clobber arguments:
 
-@enumerate
-@item
+@table @code
+@item "cc"
 The @code{"cc"} clobber indicates that the assembler code modifies the flags 
 register. On some machines, GCC represents the condition codes as a specific 
-hardware register; "cc" serves to name this register. On other machines, 
-condition code handling is different, and specifying "cc" has no effect. But 
-it is valid no matter what the machine.
-
-@item
-The "memory" clobber tells the compiler that the assembly code performs memory 
+hardware register; @code{"cc"} serves to name this register.
+On other machines, condition code handling is different, 
+and specifying @code{"cc"} has no effect. But 
+it is valid no matter what the target.
+
+@item "memory"
+The @code{"memory"} clobber tells the compiler that the assembly code
+performs memory 
 reads or writes to items other than those listed in the input and output 
-operands (for example accessing the memory pointed to by one of the input 
+operands (for example, accessing the memory pointed to by one of the input 
 parameters). To ensure memory contains correct values, GCC may need to flush 
 specific register values to memory before executing the @code{asm}. Further, 
-the compiler will not assume that any values read from memory before an 
-@code{asm} will remain unchanged after that @code{asm}; it will reload them as 
-needed. This effectively forms a read/write memory barrier for the compiler.
+the compiler does not assume that any values read from memory before an 
+@code{asm} remain unchanged after that @code{asm}; it reloads them as 
+needed.  
+Using the @code{"memory"} clobber effectively forms a read/write
+memory barrier for the compiler.
 
 Note that this clobber does not prevent the @emph{processor} from doing 
 speculative reads past the @code{asm} statement. To prevent that, you need 
 processor-specific fence instructions.
 
 Flushing registers to memory has performance implications and may be an issue 
-for time-sensitive code. One trick to avoid this is available if the size of 
+for time-sensitive code.  You can use a trick to avoid this if the size of 
 the memory being accessed is known at compile time. For example, if accessing 
 ten bytes of a string, use a memory input like: 
 
 @code{@{"m"( (@{ struct @{ char x[10]; @} *p = (void *)ptr ; *p; @}) )@}}.
 
-@end enumerate
+@end table
 
 @anchor{GotoLabels}
 @subsubsection Goto Labels
 @cindex @code{asm} goto labels
 
-@code{asm goto} allows assembly code to jump to one or more C labels. The 
-GotoLabels section in an @code{asm goto} statement contains a comma-separated 
+@code{asm goto} allows assembly code to jump to one or more C labels.  The
+@var{GotoLabels} section in an @code{asm goto} statement contains 
+a comma-separated 
 list of all C labels to which the assembler code may jump. GCC assumes that 
 @code{asm} execution falls through to the next statement (if this is not the 
 case, consider using the @code{__builtin_unreachable} intrinsic after the 
 @code{asm} statement). Optimization of @code{asm goto} may be improved by 
 using the @code{hot} and @code{cold} label attributes (@pxref{Label 
-Attributes}). The total number of input + output + goto operands has 
-a limit of 30.
+Attributes}).
 
-An @code{asm goto} statement can not have outputs (which means that the 
-statement is implicitly volatile). This is due to an internal restriction of 
-the compiler: control transfer instructions cannot have outputs. If the 
-assembler code does modify anything, use the "memory" clobber to force the 
-optimizers to flush all register values to memory, and reload them if 
-necessary, after the @code{asm} statement.
-
-To reference a label, prefix it with @code{%l} (that's a lowercase L) followed 
-by its (zero-based) position in GotoLabels plus the number of input 
-arguments.  For example, if the @code{asm} has three inputs and references two 
-labels, refer to the first label as @code{%l3} and the second as @code{%l4}).
+An @code{asm goto} statement cannot have outputs.
+This is due to an internal restriction of 
+the compiler: control transfer instructions cannot have outputs. 
+If the assembler code does modify anything, use the @code{"memory"} clobber 
+to force the 
+optimizers to flush all register values to memory and reload them if 
+necessary after the @code{asm} statement.
+
+Also note that an @code{asm goto} statement is always implicitly
+considered volatile.
+
+To reference a label in the assembler template,
+prefix it with @samp{%l} (lowercase @samp{L}) followed 
+by its (zero-based) position in @var{GotoLabels} plus the number of input 
+operands.  For example, if the @code{asm} has three inputs and references two 
+labels, refer to the first label as @samp{%l3} and the second as @samp{%l4}).
 
 @code{asm} statements may not perform jumps into other @code{asm} statements. 
 GCC's optimizers do not know about these jumps; therefore they cannot take 
 account of them when deciding how to optimize.
 
-Example code for i386 might look like:
+Here is an example of @code{asm goto} for i386:
 
 @example
 asm goto (
@@ -7212,7 +7240,7 @@ carry:
 return 1;
 @end example
 
-The following example shows an @code{asm goto} that uses the memory clobber.
+The following example shows an @code{asm goto} that uses a memory clobber.
 
 @example
 int frob(int x)
@@ -7230,17 +7258,20 @@ error:
 @end example
 
 @anchor{x86Operandmodifiers}
-@subsubsection x86 Operand modifiers
+@subsubsection x86 Operand Modifiers
 
-Input, output, and goto operands for extended @code{asm} statements can use 
-modifiers to affect the code output to the assembler. For example, the 
-following code uses the "h" and "b" modifiers for x86:
+References to input, output, and goto operands in the assembler template
+of extended @code{asm} statements can use 
+modifiers to affect the way the operands are formatted in 
+the code output to the assembler. For example, the 
+following code uses the @samp{h} and @samp{b} modifiers for x86:
 
 @example
 uint16_t  num;
 asm volatile ("xchg %h0, %b0" : "+a" (num) );
 @end example
 
+@noindent
 These modifiers generate this assembler code:
 
 @example
@@ -7265,7 +7296,7 @@ top:
 @end example
 
 With no modifiers, this is what the output from the operands would be for the 
-att and intel dialects of assembler:
+@samp{att} and @samp{intel} dialects of assembler:
 
 @multitable {Operand} {masm=att} {OFFSET FLAT:.L2}
 @headitem Operand @tab masm=att @tab masm=intel
@@ -7327,7 +7358,7 @@ The table below shows the list of suppor
 @end multitable
 
 @anchor{x86floatingpointasmoperands}
-@subsubsection x86 floating-point asm operands
+@subsubsection x86 Floating-Point @code{asm} Operands
 
 On x86 targets, there are several rules on the usage of stack-like registers
 in the operands of an @code{asm}.  These rules apply only to the operands
@@ -7369,10 +7400,10 @@ reload may think that it can use the sam
 the output.
 
 To prevent this from happening,
-if any input operand uses the @code{f} constraint, all output register
-constraints must use the @code{&} early-clobber modifier.
+if any input operand uses the @samp{f} constraint, all output register
+constraints must use the @samp{&} early-clobber modifier.
 
-The example above would be correctly written as:
+The example above is correctly written as:
 
 @smallexample
 asm ("foo" : "=&t" (a) : "f" (b));
@@ -7385,7 +7416,7 @@ know which registers the outputs appear 
 this in the constraints.
 
 Output operands must specifically indicate which register an output
-appears in after an @code{asm}.  @code{=f} is not allowed: the operand
+appears in after an @code{asm}.  @samp{=f} is not allowed: the operand
 constraints must select a class with a single register.
 
 @item
@@ -7404,8 +7435,7 @@ unrelated to the inputs and outputs.
 
 @end enumerate
 
-Here are a couple of reasonable @code{asm}s to want to write.  This
-@code{asm}
+This @code{asm}
 takes one input, which is internally popped, and produces two outputs.
 
 @smallexample
@@ -7529,8 +7559,8 @@ Here @code{a5} is the name of the regist
 register that is normally saved and restored by function calls on your
 machine, so that library routines will not clobber it.
 
-Naturally the register name is cpu-dependent, so you need to
-conditionalize your program according to cpu type.  The register
+Naturally the register name is CPU-dependent, so you need to
+conditionalize your program according to CPU type.  The register
 @code{a5} is a good choice on a 68000 for a variable of pointer
 type.  On machines with register windows, be sure to choose a ``global''
 register that is not affected magically by the function call mechanism.
@@ -7628,13 +7658,13 @@ Here @code{a5} is the name of the regist
 that this is the same syntax used for defining global register
 variables, but for a local variable it appears within a function.
 
-Naturally the register name is cpu-dependent, but this is not a
+Naturally the register name is CPU-dependent, but this is not a
 problem, since specific registers are most often useful with explicit
 assembler instructions (@pxref{Extended Asm}).  Both of these things
 generally require that you conditionalize your program according to
-cpu type.
+CPU type.
 
-In addition, operating systems on one type of cpu may differ in how they
+In addition, operating systems on one type of CPU may differ in how they
 name the registers; then you need additional conditionals.  For
 example, some 68000 operating systems call this register @code{%a5}.
 
@@ -7644,11 +7674,12 @@ the variable's value is not live.
 
 This option does not guarantee that GCC generates code that has
 this variable in the register you specify at all times.  You may not
-code an explicit reference to this register in the @emph{assembler
-instruction template} part of an @code{asm} statement and assume it
-always refers to this variable.  However, using the variable as an
-@code{asm} @emph{operand} guarantees that the specified register is used
-for the operand.
+code an explicit reference to this register in the assembler
+instruction template part of an @code{asm} statement and assume it
+always refers to this variable.
+However, using the variable as an input or output operand to the @code{asm}
+guarantees that the specified register is used for that operand.  
+@xref{Extended Asm}, for more information.
 
 Stores into local register variables may be deleted when they appear to be dead
 according to dataflow analysis.  References to local register variables may

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]