Tim Shen | 403c667 | 2018-04-23 21:54:06 +0000 | [diff] [blame^] | 1 | //===----------------------------------------------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | // Source Licenses. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | // UNSUPPORTED: c++98, c++03 |
| 11 | |
| 12 | // See GCC PR63723. |
| 13 | // UNSUPPORTED: gcc-4.9 |
| 14 | |
| 15 | // <experimental/simd> |
| 16 | // |
| 17 | // [simd.class] |
| 18 | // template <class U> simd(U&& value); |
| 19 | |
| 20 | #include <cstdint> |
| 21 | #include <experimental/simd> |
| 22 | |
| 23 | using namespace std::experimental::parallelism_v2; |
| 24 | |
| 25 | template <class T, class... Args> |
| 26 | auto not_supported_native_simd_ctor(Args&&... args) |
| 27 | -> decltype(native_simd<T>(std::forward<Args>(args)...), void()) = delete; |
| 28 | |
| 29 | template <class T> |
| 30 | void not_supported_native_simd_ctor(...) {} |
| 31 | |
| 32 | template <class T, class... Args> |
| 33 | auto supported_native_simd_ctor(Args&&... args) |
| 34 | -> decltype(native_simd<T>(std::forward<Args>(args)...), void()) {} |
| 35 | |
| 36 | template <class T> |
| 37 | void supported_native_simd_ctor(...) = delete; |
| 38 | |
| 39 | void compile_narrowing_conversion() { |
| 40 | supported_native_simd_ctor<int8_t>(3); |
| 41 | supported_native_simd_ctor<int16_t>(3); |
| 42 | supported_native_simd_ctor<int32_t>(3); |
| 43 | supported_native_simd_ctor<int64_t>(3); |
| 44 | supported_native_simd_ctor<uint8_t>(3); |
| 45 | supported_native_simd_ctor<uint16_t>(3); |
| 46 | supported_native_simd_ctor<uint32_t>(3); |
| 47 | supported_native_simd_ctor<uint64_t>(3); |
| 48 | supported_native_simd_ctor<float>(3.f); |
| 49 | supported_native_simd_ctor<double>(3.); |
| 50 | supported_native_simd_ctor<long double>(3.); |
| 51 | |
| 52 | not_supported_native_simd_ctor<float>(3.); |
| 53 | not_supported_native_simd_ctor<int8_t>(long(3)); |
| 54 | not_supported_native_simd_ctor<float>(long(3)); |
| 55 | not_supported_native_simd_ctor<int>(3.); |
| 56 | } |
| 57 | |
| 58 | int main() {} |