Add recognition of the Intel 16.0 compiler in kmp_version.c
authorJonathan Peyton <jonathan.l.peyton@intel.com>
Wed, 12 Aug 2015 19:48:31 +0000 (19:48 +0000)
committerJonathan Peyton <jonathan.l.peyton@intel.com>
Wed, 12 Aug 2015 19:48:31 +0000 (19:48 +0000)
llvm-svn: 244799

openmp/runtime/src/kmp_version.c

index 1d0b9e4..2ddd76d 100644 (file)
@@ -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