Commit 06ef8c2e by H.J. Lu Committed by H.J. Lu

Add missing ','.

2011-09-30  H.J. Lu  <hongjiu.lu@intel.com>

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

From-SVN: r179397
parent ad7715f3
2011-09-30 H.J. Lu <hongjiu.lu@intel.com>
* doc/extend.texi: Add missing ','.
2011-09-30 Bernd Schmidt <bernds@codesourcery.com> 2011-09-30 Bernd Schmidt <bernds@codesourcery.com>
* common/config/c6x/c6x-common.c (c6x_option_optimization_table): * common/config/c6x/c6x-common.c (c6x_option_optimization_table):
...@@ -6722,8 +6722,8 @@ return the new value. That is, ...@@ -6722,8 +6722,8 @@ return the new value. That is,
builtin as @code{*ptr = ~(*ptr & value)} instead of builtin as @code{*ptr = ~(*ptr & value)} instead of
@code{*ptr = ~*ptr & value}. @code{*ptr = ~*ptr & value}.
@item bool __sync_bool_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, ...) @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_bool_compare_and_swap
@findex __sync_val_compare_and_swap @findex __sync_val_compare_and_swap
These builtins perform an atomic compare and swap. That is, if the current These builtins perform an atomic compare and swap. That is, if the current
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment