//===----------------------------------------------------------------------===// // // 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 // // template // void // atomic_store(volatile atomic* obj, T desr); // // template // void // atomic_store(atomic* obj, T desr); #include #include #include #include "atomic_helpers.h" template struct TestFn { void operator()() const { typedef std::atomic A; A t; std::atomic_store(&t, T(1)); assert(t == T(1)); volatile A vt; std::atomic_store(&vt, T(2)); assert(vt == T(2)); } }; int main() { TestEachAtomicType()(); }