diff options
author | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2015-08-12 19:48:31 +0000 |
---|---|---|
committer | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2015-08-12 19:48:31 +0000 |
commit | 3bb3e0930857246c65dbe8306adbcc2230b8239e (patch) | |
tree | 954904fd052141c9da01b5eac4f6afabe26a60ba /openmp/runtime/src | |
parent | 32847fb7abf9404ebad588192542f2a880ec4310 (diff) | |
download | bcm5719-llvm-3bb3e0930857246c65dbe8306adbcc2230b8239e.tar.gz bcm5719-llvm-3bb3e0930857246c65dbe8306adbcc2230b8239e.zip |
Add recognition of the Intel 16.0 compiler in kmp_version.c
llvm-svn: 244799
Diffstat (limited to 'openmp/runtime/src')
-rw-r--r-- | openmp/runtime/src/kmp_version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/openmp/runtime/src/kmp_version.c b/openmp/runtime/src/kmp_version.c index 1d0b9e4c7bb..2ddd76d3ad7 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 |