[gcc(refs/users/marxin/heads/marxin-gcc-benchmark-branch)] Fix 'A' operand modifier: PR inline-asm/94095

Martin Liska marxin@gcc.gnu.org
Mon Mar 30 10:42:23 GMT 2020


https://gcc.gnu.org/g:a931bb50fe77446058166b50eea4e53223ad7ef7

commit a931bb50fe77446058166b50eea4e53223ad7ef7
Author: Andrew Pinski <apinski@marvell.com>
Date:   Mon Mar 9 09:45:23 2020 -0700

    Fix 'A' operand modifier: PR inline-asm/94095
    
    The problem here is there was a typo in the documentation
    for the 'A' modifier in the table, it was recorded as 'a'
    in the table on the modifier column.
    
    Committed as obvious.
    
    2020-03-09  Andrew Pinski  <apinski@marvell.com>
    
            PR inline-asm/94095
            * doc/extend.texi (x86 Operand Modifiers): Fix column
            for 'A' modifier.

Diff:
---
 gcc/ChangeLog       | 6 ++++++
 gcc/doc/extend.texi | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6c4a5053f44..99f001154c3 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2020-03-09  Andrew Pinski  <apinski@marvell.com>
+
+	PR inline-asm/94095
+	* doc/extend.texi (x86 Operand Modifiers): Fix column
+	for 'A' modifier.
+
 2020-03-09  Martin Liska  <mliska@suse.cz>
 
 	PR target/93800
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 11b79a5852c..e0e7f540c21 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -10437,7 +10437,7 @@ The table below shows the list of supported modifiers and their effects.
 
 @multitable {Modifier} {Print the opcode suffix for the size of th} {Operand} {@samp{att}} {@samp{intel}}
 @headitem Modifier @tab Description @tab Operand @tab @samp{att} @tab @samp{intel}
-@item @code{a}
+@item @code{A}
 @tab Print an absolute memory reference.
 @tab @code{%A0}
 @tab @code{*%rax}


More information about the Gcc-cvs mailing list