]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Add missing ','.
authorH.J. Lu <hongjiu.lu@intel.com>
Fri, 30 Sep 2011 16:29:06 +0000 (16:29 +0000)
committerH.J. Lu <hjl@gcc.gnu.org>
Fri, 30 Sep 2011 16:29:06 +0000 (09:29 -0700)
2011-09-30  H.J. Lu  <hongjiu.lu@intel.com>

* doc/extend.texi: Add missing ','.

From-SVN: r179397

gcc/ChangeLog
gcc/doc/extend.texi

index 485e839129de1b591fe5de01b99822e7f3607fbb..2b62b9687116dd2cbe47c7624fc3746d2b0f9192 100644 (file)
@@ -1,3 +1,7 @@
+2011-09-30  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * doc/extend.texi: Add missing ','.
+
 2011-09-30  Bernd Schmidt  <bernds@codesourcery.com>
 
        * common/config/c6x/c6x-common.c (c6x_option_optimization_table):
index 7ca50da0f13456938871a34ac9245a4b79388144..5fe0371df8f621dda56c842280f7e50203da5f7f 100644 (file)
@@ -6722,8 +6722,8 @@ return the new value.  That is,
 builtin as @code{*ptr = ~(*ptr & value)} instead of
 @code{*ptr = ~*ptr & value}.
 
-@item bool __sync_bool_compare_and_swap (@var{type} *ptr, @var{type} oldval @var{type} newval, ...)
-@itemx @var{type} __sync_val_compare_and_swap (@var{type} *ptr, @var{type} oldval @var{type} newval, ...)
+@item bool __sync_bool_compare_and_swap (@var{type} *ptr, @var{type} oldval, @var{type} newval, ...)
+@itemx @var{type} __sync_val_compare_and_swap (@var{type} *ptr, @var{type} oldval, @var{type} newval, ...)
 @findex __sync_bool_compare_and_swap
 @findex __sync_val_compare_and_swap
 These builtins perform an atomic compare and swap.  That is, if the current