forked from OSchip/llvm-project
[clang-cl] Define _MSVC_LANG
Recently, Microsoft added support for a flag, /std, which controls which version of the language rules MSVC should use. MSVC hasn't updated __cplusplus though. Instead, they added a new macro, _MSVC_LANG, which is defined in a similar fashion to __cplusplus. This is used to indicate which mode the compiler is in. llvm-svn: 273987
This commit is contained in:
parent
2916a612cd
commit
017cf35d7c
|
@ -734,6 +734,13 @@ protected:
|
|||
|
||||
if (Opts.CPlusPlus11 && Opts.isCompatibleWithMSVC(LangOptions::MSVC2015))
|
||||
Builder.defineMacro("_HAS_CHAR16_T_LANGUAGE_SUPPORT", Twine(1));
|
||||
|
||||
if (Opts.isCompatibleWithMSVC(LangOptions::MSVC2015)) {
|
||||
if (Opts.CPlusPlus1z)
|
||||
Builder.defineMacro("_MSVC_LANG", "201403L");
|
||||
else if (Opts.CPlusPlus14)
|
||||
Builder.defineMacro("_MSVC_LANG", "201402L");
|
||||
}
|
||||
}
|
||||
|
||||
if (Opts.MicrosoftExt) {
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
// This test verifies that the correct macros are predefined.
|
||||
//
|
||||
// RUN: %clang_cc1 %s -E -dM -triple i686-pc-win32 -fms-extensions -fms-compatibility \
|
||||
// RUN: -fms-compatibility-version=13.00 -o - | FileCheck -match-full-lines %s --check-prefix=CHECK-MS
|
||||
// RUN: %clang_cc1 %s -x c++ -E -dM -triple i686-pc-win32 -fms-extensions -fms-compatibility \
|
||||
// RUN: -fms-compatibility-version=19.00 -std=c++1z -o - | FileCheck -match-full-lines %s --check-prefix=CHECK-MS
|
||||
// CHECK-MS: #define _INTEGRAL_MAX_BITS 64
|
||||
// CHECK-MS: #define _MSC_EXTENSIONS 1
|
||||
// CHECK-MS: #define _MSC_VER 1300
|
||||
// CHECK-MS: #define _MSC_VER 1900
|
||||
// CHECK-MS: #define _MSVC_LANG 201403L
|
||||
// CHECK-MS: #define _M_IX86 600
|
||||
// CHECK-MS: #define _M_IX86_FP 0
|
||||
// CHECK-MS: #define _WIN32 1
|
||||
|
@ -13,11 +14,12 @@
|
|||
// CHECK-MS-NOT: GNU
|
||||
// CHECK-MS-NOT: GXX
|
||||
//
|
||||
// RUN: %clang_cc1 %s -E -dM -triple x86_64-pc-win32 -fms-extensions -fms-compatibility \
|
||||
// RUN: -fms-compatibility-version=13.00 -o - | FileCheck -match-full-lines %s --check-prefix=CHECK-MS64
|
||||
// RUN: %clang_cc1 %s -x c++ -E -dM -triple x86_64-pc-win32 -fms-extensions -fms-compatibility \
|
||||
// RUN: -fms-compatibility-version=19.00 -std=c++14 -o - | FileCheck -match-full-lines %s --check-prefix=CHECK-MS64
|
||||
// CHECK-MS64: #define _INTEGRAL_MAX_BITS 64
|
||||
// CHECK-MS64: #define _MSC_EXTENSIONS 1
|
||||
// CHECK-MS64: #define _MSC_VER 1300
|
||||
// CHECK-MS64: #define _MSC_VER 1900
|
||||
// CHECK-MS64: #define _MSVC_LANG 201402L
|
||||
// CHECK-MS64: #define _M_AMD64 100
|
||||
// CHECK-MS64: #define _M_X64 100
|
||||
// CHECK-MS64: #define _WIN64 1
|
||||
|
|
Loading…
Reference in New Issue