From 3bb3e0930857246c65dbe8306adbcc2230b8239e Mon Sep 17 00:00:00 2001 From: Jonathan Peyton Date: Wed, 12 Aug 2015 19:48:31 +0000 Subject: [PATCH] Add recognition of the Intel 16.0 compiler in kmp_version.c llvm-svn: 244799 --- openmp/runtime/src/kmp_version.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openmp/runtime/src/kmp_version.c b/openmp/runtime/src/kmp_version.c index 1d0b9e4c7bbc..2ddd76d3ad7b 100644 --- a/openmp/runtime/src/kmp_version.c +++ b/openmp/runtime/src/kmp_version.c @@ -46,6 +46,8 @@ #define KMP_COMPILER "Intel C++ Compiler 14.1" #elif __INTEL_COMPILER == 1500 #define KMP_COMPILER "Intel C++ Compiler 15.0" + #elif __INTEL_COMPILER == 1600 + #define KMP_COMPILER "Intel C++ Compiler 16.0" #elif __INTEL_COMPILER == 9999 #define KMP_COMPILER "Intel C++ Compiler mainline" #endif -- GitLab