This commit introduces support for the MSVC-specific C++11-style attribute `[[msvc::constexpr]]`, which was introduced in MSVC 14.33. The semantics of this attribute are enabled only under MSVC compatibility (`-fms-compatibility-version`) 14.33 and higher. Additionally, the default value of `_MSC_VER` has been raised to 1433. The current implementation lacks support for: - `[[msvc::constexpr]]` constructors (see #72149); at the time of this implementation, such support would have required an unreasonable number of changes in Clang. - `[[msvc::constexpr]] return ::new` (constexpr placement new) from non-std namespaces (see #74924). Relevant to: #57696
29 lines
1.2 KiB
C++
29 lines
1.2 KiB
C++
// RUN: %clang_cc1 -fms-compatibility -fms-compatibility-version=19.33 -std=c++20 -ast-dump -verify %s | FileCheck %s
|
|
// expected-no-diagnostics
|
|
|
|
// CHECK: used f1 'bool ()'
|
|
// CHECK: MSConstexprAttr 0x{{[0-9a-f]+}} <col:3, col:9>
|
|
[[msvc::constexpr]] bool f1() { return true; }
|
|
|
|
// CHECK: used constexpr f2 'bool ()'
|
|
// CHECK-NEXT: CompoundStmt 0x{{[0-9a-f]+}} <col:21, col:56>
|
|
// CHECK-NEXT: AttributedStmt 0x{{[0-9a-f]+}} <col:23, col:53>
|
|
// CHECK-NEXT: MSConstexprAttr 0x{{[0-9a-f]+}} <col:25, col:31>
|
|
// CHECK-NEXT: ReturnStmt 0x{{[0-9a-f]+}} <col:43, col:53>
|
|
constexpr bool f2() { [[msvc::constexpr]] return f1(); }
|
|
static_assert(f2());
|
|
|
|
struct S1 {
|
|
// CHECK: used vm 'bool ()' virtual
|
|
// CHECK: MSConstexprAttr 0x{{[0-9a-f]+}} <col:7, col:13>
|
|
[[msvc::constexpr]] virtual bool vm() { return true; }
|
|
|
|
// CHECK: used constexpr cm 'bool ()'
|
|
// CHECK-NEXT: CompoundStmt 0x{{[0-9a-f]+}} <col:25, col:60>
|
|
// CHECK-NEXT: AttributedStmt 0x{{[0-9a-f]+}} <col:27, col:57>
|
|
// CHECK-NEXT: MSConstexprAttr 0x{{[0-9a-f]+}} <col:29, col:35>
|
|
// CHECK-NEXT: ReturnStmt 0x{{[0-9a-f]+}} <col:47, col:57>
|
|
constexpr bool cm() { [[msvc::constexpr]] return vm(); }
|
|
};
|
|
static_assert(S1{}.cm());
|