8273176: handle latest VS2019 in abstract_vm_version

Reviewed-by: kevinw, dholmes
This commit is contained in:
Matthias Baesken 2021-09-01 07:59:10 +00:00
parent f1c5e26e48
commit 0e14bf70cf

View File

@ -235,7 +235,9 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
#elif _MSC_VER == 1927
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.7 (VS2019)"
#elif _MSC_VER == 1928
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.8 (VS2019)"
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.8 / 16.9 (VS2019)"
#elif _MSC_VER == 1929
#define HOTSPOT_BUILD_COMPILER "MS VC++ 16.10 / 16.11 (VS2019)"
#else
#define HOTSPOT_BUILD_COMPILER "unknown MS VC++:" XSTR(_MSC_VER)
#endif