|
77 | 77 | /// * 1916: VS2017, version 15.9
|
78 | 78 | /// * 1920: VS2019, version 16.0
|
79 | 79 | /// * 1921: VS2019, version 16.1
|
| 80 | +/// * 1922: VS2019, version 16.2 |
| 81 | +/// * 1923: VS2019, version 16.3 |
| 82 | +/// * 1924: VS2019, version 16.4 |
| 83 | +/// * 1925: VS2019, version 16.5 |
| 84 | +/// * 1926: VS2019, version 16.6 |
| 85 | +/// * 1927: VS2019, version 16.7 |
| 86 | +/// * 1928: VS2019, version 16.8 + 16.9 |
| 87 | +/// * 1929: VS2019, version 16.10 + 16.11 |
| 88 | +/// * 1930: VS2022, version 17.0 |
80 | 89 | #ifdef _MSC_VER
|
81 | 90 | #define LLVM_MSC_PREREQ(version) (_MSC_VER >= (version))
|
82 | 91 |
|
83 |
| -// We require at least MSVC 2017. |
84 |
| -#if !LLVM_MSC_PREREQ(1910) |
85 |
| -#error LLVM requires at least MSVC 2017. |
| 92 | +// We require at least VS 2019. |
| 93 | +#if !LLVM_MSC_PREREQ(1920) |
| 94 | +#error LLVM requires at least VS 2019. |
86 | 95 | #endif
|
87 | 96 |
|
88 | 97 | #else
|
|
94 | 103 | /// Sadly, this is separate from just rvalue reference support because GCC
|
95 | 104 | /// and MSVC implemented this later than everything else. This appears to be
|
96 | 105 | /// corrected in MSVC 2019 but not MSVC 2017.
|
97 |
| -#if __has_feature(cxx_rvalue_references) || defined(__GNUC__) || \ |
98 |
| - LLVM_MSC_PREREQ(1920) |
| 106 | +/// FIXME: Remove LLVM_HAS_RVALUE_REFERENCE_THIS macro |
99 | 107 | #define LLVM_HAS_RVALUE_REFERENCE_THIS 1
|
100 |
| -#else |
101 |
| -#define LLVM_HAS_RVALUE_REFERENCE_THIS 0 |
102 |
| -#endif |
103 | 108 |
|
104 | 109 | /// Expands to '&' if ref-qualifiers for *this are supported.
|
105 | 110 | ///
|
|
0 commit comments