[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / libcxx / test / std / thread / thread.threads / thread.thread.class / thread.thread.id / enabled_hashes.pass.cpp
blob62c8c7476ab7ec9d7f19bef1237c4fca9beb8920
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
10 // UNSUPPORTED: c++03
12 // <thread>
14 // Test that <thread> provides all of the arithmetic, enum, and pointer
15 // hash specializations.
17 #include <functional>
18 #include <thread>
20 #include "poisoned_hash_helper.h"
22 #include "test_macros.h"
24 int main(int, char**) {
25 test_library_hash_specializations_available();
27 test_hash_enabled_for_type<std::thread::id>();
30 return 0;