summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/atomics/atomics.fences/atomic_thread_fence.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/std/atomics/atomics.fences/atomic_thread_fence.pass.cpp')
-rw-r--r--libcxx/test/std/atomics/atomics.fences/atomic_thread_fence.pass.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/libcxx/test/std/atomics/atomics.fences/atomic_thread_fence.pass.cpp b/libcxx/test/std/atomics/atomics.fences/atomic_thread_fence.pass.cpp
new file mode 100644
index 00000000000..4f3b0e330e3
--- /dev/null
+++ b/libcxx/test/std/atomics/atomics.fences/atomic_thread_fence.pass.cpp
@@ -0,0 +1,21 @@
+//===----------------------------------------------------------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// UNSUPPORTED: libcpp-has-no-threads
+
+// <atomic>
+
+// void atomic_thread_fence(memory_order m);
+
+#include <atomic>
+
+int main()
+{
+ std::atomic_thread_fence(std::memory_order_seq_cst);
+}
OpenPOWER on IntegriCloud