diff options
| -rw-r--r-- | openmp/runtime/src/kmp_version.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openmp/runtime/src/kmp_version.cpp b/openmp/runtime/src/kmp_version.cpp index 7e035cefe31..7a4934a5cf9 100644 --- a/openmp/runtime/src/kmp_version.cpp +++ b/openmp/runtime/src/kmp_version.cpp @@ -49,9 +49,9 @@ #define KMP_COMPILER "Intel(R) C++ Compiler 17.0" #elif __INTEL_COMPILER == 1800 #define KMP_COMPILER "Intel(R) C++ Compiler 18.0" -#elif __INTEL_COMPILER == 9998 -#define KMP_COMPILER "Intel(R) C++ Compiler mainline" -#elif __INTEL_COMPILER == 9999 +#elif __INTEL_COMPILER == 1900 +#define KMP_COMPILER "Intel(R) C++ Compiler 19.0" +#elif __INTEL_COMPILER >= 9900 #define KMP_COMPILER "Intel(R) C++ Compiler mainline" #endif #elif KMP_COMPILER_CLANG |

