From: H.J. Lu Date: Fri, 30 Sep 2011 16:29:06 +0000 (+0000) Subject: Add missing ','. X-Git-Tag: releases/gcc-4.7.0~3442 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=06ef8c2e5581d0ec0bb45775eb70535695d61358;p=thirdparty%2Fgcc.git Add missing ','. 2011-09-30 H.J. Lu * doc/extend.texi: Add missing ','. From-SVN: r179397 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 485e839129de..2b62b9687116 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2011-09-30 H.J. Lu + + * doc/extend.texi: Add missing ','. + 2011-09-30 Bernd Schmidt * common/config/c6x/c6x-common.c (c6x_option_optimization_table): diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 7ca50da0f134..5fe0371df8f6 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -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