gcc/:
2013-06-22 Andi Kleen <ak@linux.intel.com>
* doc/extend.texi: Use __atomic_store_n instead of
__atomic_store in HLE example.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@200333
138bc75d-0d04-0410-961f-
82ee72b054a4
+2013-06-22 Andi Kleen <ak@linux.intel.com>
+
+ * doc/extend.texi: Use __atomic_store_n instead of
+ __atomic_store in HLE example.
+
2013-06-22 Oleg Endo <olegendo@gcc.gnu.org>
* config/sh/sh.c: Remove <cstdlib> workaround.
_mm_pause(); /* Abort failed transaction */
...
/* Free lock with lock elision */
-__atomic_store(&lockvar, 0, __ATOMIC_RELEASE|__ATOMIC_HLE_RELEASE);
+__atomic_store_n(&lockvar, 0, __ATOMIC_RELEASE|__ATOMIC_HLE_RELEASE);
@end smallexample
@node Object Size Checking