[Openmp-commits] [openmp] r244799 - Add recognition of the Intel 16.0 compiler in kmp_version.c
    Jonathan Peyton via Openmp-commits 
    openmp-commits at lists.llvm.org
       
    Wed Aug 12 12:48:31 PDT 2015
    
    
  
Author: jlpeyton
Date: Wed Aug 12 14:48:31 2015
New Revision: 244799
URL: http://llvm.org/viewvc/llvm-project?rev=244799&view=rev
Log:
Add recognition of the Intel 16.0 compiler in kmp_version.c
Modified:
    openmp/trunk/runtime/src/kmp_version.c
Modified: openmp/trunk/runtime/src/kmp_version.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_version.c?rev=244799&r1=244798&r2=244799&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_version.c (original)
+++ openmp/trunk/runtime/src/kmp_version.c Wed Aug 12 14:48:31 2015
@@ -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
    
    
More information about the Openmp-commits
mailing list