[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / libcxx / test / std / thread / thread.mutex / thread.mutex.requirements / thread.timedmutex.requirements / thread.timedmutex.recursive / default.pass.cpp
blob73e2e7a3a5ab9e44b7ea18825837891407d28ce3
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 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: no-threads
11 // <mutex>
13 // class recursive_timed_mutex;
15 // recursive_timed_mutex();
17 #include <mutex>
19 #include "test_macros.h"
21 int main(int, char**)
23 std::recursive_timed_mutex m;
25 return 0;