summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsandra <sandra@138bc75d-0d04-0410-961f-82ee72b054a4>2015-02-11 00:25:52 +0000
committersandra <sandra@138bc75d-0d04-0410-961f-82ee72b054a4>2015-02-11 00:25:52 +0000
commit5b6d2c73964152063a1a2ae09b522811d0127c0b (patch)
treee04ed7e73127253873760f832d68bfa4720b4be3
parentf80bec031dcc78dd8cdeb69916a892497fbc3803 (diff)
downloadgcc-5b6d2c73964152063a1a2ae09b522811d0127c0b.tar.gz
2015-02-10 Sandra Loosemore <sandra@codesourcery.com>
gcc/ * doc/extend.texi (Extended Asm): Fix typos. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@220602 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/doc/extend.texi4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ab9233ffc6a..ea838c1df11 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index d5fb4b3c674..3428af70638 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -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