/* TAGS: c++ */ /* VERIFY_OPTS: -o nofail:malloc */ //===----------------------------------------------------------------------===// // // 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 // ... assertion fails line 34 // // template // bool // atomic_compare_exchange_weak(volatile atomic* obj, T* expc, T desr); // // template // bool // atomic_compare_exchange_weak(atomic* obj, T* expc, T desr); #include #include #include #include "cmpxchg_loop.h" template void test() { { typedef std::atomic A; A a; T t(T(1)); std::atomic_init(&a, t); assert(c_cmpxchg_weak_loop(&a, &t, T(2)) == true); assert(a == T(2)); assert(t == T(1)); assert(std::atomic_compare_exchange_weak(&a, &t, T(3)) == false); assert(a == T(2)); assert(t == T(2)); } { typedef std::atomic A; volatile A a; T t(T(1)); std::atomic_init(&a, t); assert(c_cmpxchg_weak_loop(&a, &t, T(2)) == true); assert(a == T(2)); assert(t == T(1)); assert(std::atomic_compare_exchange_weak(&a, &t, T(3)) == false); assert(a == T(2)); assert(t == T(2)); } } struct A { int i; explicit A(int d = 0) noexcept {i=d;} friend bool operator==(const A& x, const A& y) {return x.i == y.i;} }; int main() { test(); test(); test(); test(); test(); test(); test(); test(); test(); test(); test(); test(); test(); #ifndef _LIBCPP_HAS_NO_UNICODE_CHARS test(); test(); #endif // _LIBCPP_HAS_NO_UNICODE_CHARS test(); test(); }