[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / libcxx / test / std / thread / thread.condition / thread.condition.condvarany / default.pass.cpp
blob0cf70ad3c517b21edf6afb879687fd582e3b88b1
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
11 // <condition_variable>
13 // class condition_variable_any;
15 // condition_variable_any();
17 #include <condition_variable>
18 #include <cassert>
20 #include "test_macros.h"
22 int main(int, char**)
24 std::condition_variable_any cv;
26 return 0;