diff options
author | Adrian Straetling <straetling@de.ibm.com> | 2005-12-06 15:15:36 +0000 |
---|---|---|
committer | Andreas Krebbel <krebbel@gcc.gnu.org> | 2005-12-06 15:15:36 +0000 |
commit | d1a4872d76d14c7a2b93e07db95f4ef32b8af645 (patch) | |
tree | e1a7f23ec79a1d76b5f4ac5cc73a7aa7c009262b /gcc/doc/md.texi | |
parent | eda0cd9827081b8c628a2a162321342ebc76eba9 (diff) | |
download | gcc-d1a4872d76d14c7a2b93e07db95f4ef32b8af645.zip gcc-d1a4872d76d14c7a2b93e07db95f4ef32b8af645.tar.gz gcc-d1a4872d76d14c7a2b93e07db95f4ef32b8af645.tar.bz2 |
md.texi: Adapt to implementation.
2005-12-06 Adrian Straetling <straetling@de.ibm.com>
* doc/md.texi: Adapt to implementation.
From-SVN: r108121
Diffstat (limited to 'gcc/doc/md.texi')
-rw-r--r-- | gcc/doc/md.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/md.texi b/gcc/doc/md.texi index 5bbeaa0..5933cc8 100644 --- a/gcc/doc/md.texi +++ b/gcc/doc/md.texi @@ -4200,7 +4200,7 @@ These patterns emit code for an atomic operation on memory. Operand 0 is the memory on which the atomic operation is performed. Operand 1 is the second operand to the binary operator. -The ``nand'' operation is @code{op0 & ~op1}. +The ``nand'' operation is @code{~op0 & op1}. This pattern must issue any memory barrier instructions such that all memory operations before the atomic operation occur before the atomic |