[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / libcxx / test / std / thread / thread.barrier / completion.pass.cpp
blob7354dbe6ffe8ae898c9b085fedc26655bfe3b1ce
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // UNSUPPORTED: no-threads
10 // UNSUPPORTED: c++03, c++11
12 // XFAIL: availability-synchronization_library-missing
14 // <barrier>
16 #include <barrier>
17 #include <thread>
18 #include <cassert>
20 #include "make_test_thread.h"
21 #include "test_macros.h"
23 int main(int, char**)
25 int x = 0;
26 auto comp = [&]() noexcept { x += 1; };
27 std::barrier<decltype(comp)> b(2, comp);
29 std::thread t = support::make_test_thread([&](){
30 for(int i = 0; i < 10; ++i)
31 b.arrive_and_wait();
32 });
34 for(int i = 0; i < 10; ++i)
35 b.arrive_and_wait();
37 assert(x == 10);
38 t.join();
39 return 0;