Skip to content

Commit 0e14bf7

Browse files
committed
8273176: handle latest VS2019 in abstract_vm_version
Reviewed-by: kevinw, dholmes
1 parent f1c5e26 commit 0e14bf7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/hotspot/share/runtime/abstract_vm_version.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,9 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
235235
#elif _MSC_VER == 1927
236236
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.7 (VS2019)"
237237
#elif _MSC_VER == 1928
238-
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.8 (VS2019)"
238+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.8 / 16.9 (VS2019)"
239+
#elif _MSC_VER == 1929
240+
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.10 / 16.11 (VS2019)"
239241
#else
240242
#define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
241243
#endif

0 commit comments

Comments
 (0)