diff options
author | Andrew Pinski <apinski@marvell.com> | 2020-03-09 09:45:23 -0700 |
---|---|---|
committer | Andrew Pinski <apinski@marvell.com> | 2020-03-09 09:59:03 -0700 |
commit | a931bb50fe77446058166b50eea4e53223ad7ef7 (patch) | |
tree | c92e679b22497bea1863d79de16661c735b91773 /gcc | |
parent | 9439378f7a08cf9c8f524c9f3758a37d804ac106 (diff) | |
download | gcc-a931bb50fe77446058166b50eea4e53223ad7ef7.zip gcc-a931bb50fe77446058166b50eea4e53223ad7ef7.tar.gz gcc-a931bb50fe77446058166b50eea4e53223ad7ef7.tar.bz2 |
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.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/doc/extend.texi | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6c4a505..99f0011 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 11b79a5..e0e7f54 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} |