summaryrefslogtreecommitdiffstats
path: root/libcxx/src/include/atomic_support.h
diff options
context:
space:
mode:
authorDimitry Andric <dimitry@andric.com>2015-09-22 18:55:37 +0000
committerDimitry Andric <dimitry@andric.com>2015-09-22 18:55:37 +0000
commit66aa3a7f9e250d623bf89e11c32b56c47f025676 (patch)
tree0741a836f69c33919445b25b7708a8698b1e7acf /libcxx/src/include/atomic_support.h
parent4e6b3b25805099c21ed3687368748c4a557f1a98 (diff)
downloadbcm5719-llvm-66aa3a7f9e250d623bf89e11c32b56c47f025676.tar.gz
bcm5719-llvm-66aa3a7f9e250d623bf89e11c32b56c47f025676.zip
Add placeholder __libcpp_relaxed_store() for when atomic builtins are not available.
Summary: In rL241532, atomic_support.h was added, which provides handling of atomic operations for libc++. When atomic builtins are not available, it emits a warning about being unsupported, but it still provides a number of stubs for the required functions. However, it misses a stub for `__libcpp_relaxed_store()`. Add it, by using the same implementation as for `__libcpp_atomic_store()`. (Note that I encountered this on arm-freebsd, which still defaults to armv4, and does not have the runtime libcalls to support atomic builtins. For now, I have simply disabled using them.) Reviewers: mclow.lists, EricWF Subscribers: theraven, cfe-commits, jroelofs, majnemer, aemerson Differential Revision: http://reviews.llvm.org/D13051 llvm-svn: 248313
Diffstat (limited to 'libcxx/src/include/atomic_support.h')
-rw-r--r--libcxx/src/include/atomic_support.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libcxx/src/include/atomic_support.h b/libcxx/src/include/atomic_support.h
index e738a5154cd..dbf3b9c81ea 100644
--- a/libcxx/src/include/atomic_support.h
+++ b/libcxx/src/include/atomic_support.h
@@ -103,6 +103,13 @@ void __libcpp_atomic_store(_ValueType* __dest, _FromType __val,
*__dest = __val;
}
+template <class _ValueType, class _FromType>
+inline _LIBCPP_INLINE_VISIBILITY
+void __libcpp_relaxed_store(_ValueType* __dest, _FromType __val)
+{
+ *__dest = __val;
+}
+
template <class _ValueType>
inline _LIBCPP_INLINE_VISIBILITY
_ValueType __libcpp_atomic_load(_ValueType const* __val,
OpenPOWER on IntegriCloud