extend.texi (Extended Asm): Fix typos.
authorSandra Loosemore <sandra@codesourcery.com>
Wed, 11 Feb 2015 00:25:52 +0000 (19:25 -0500)
committerSandra Loosemore <sandra@gcc.gnu.org>
Wed, 11 Feb 2015 00:25:52 +0000 (19:25 -0500)
2015-02-10  Sandra Loosemore  <sandra@codesourcery.com>

gcc/
* doc/extend.texi (Extended Asm): Fix typos.

From-SVN: r220602

gcc/ChangeLog
gcc/doc/extend.texi

index ab9233ffc6a03afafa2233828d4ceae847e04135..ea838c1df1120538271f6fc0a3d49d511327e3d7 100644 (file)
@@ -1,3 +1,7 @@
+2015-02-10  Sandra Loosemore  <sandra@codesourcery.com>
+
+       * doc/extend.texi (Extended Asm): Fix typos.
+
 2015-02-10  Jakub Jelinek  <jakub@redhat.com>
 
        PR sanitizer/65004
index d5fb4b3c6748df9ca329a2821d1b3466e720c0f5..3428af70638924197d139abf241ee95d5abee575 100644 (file)
@@ -7063,7 +7063,7 @@ 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
-two output opeerands and three inputs,
+two output operands and three inputs,
 use @samp{%2} in the template to refer to the first input operand,
 @samp{%3} for the second, and @samp{%4} for the third. 
 
@@ -7099,7 +7099,7 @@ consecutive colons where the output operands would go:
 @example
 __asm__ ("some instructions"
    : /* No outputs. */
-   : "r" (Offset / 8);
+   : "r" (Offset / 8));
 @end example
 
 @strong{Warning:} Do @emph{not} modify the contents of input-only operands