855 changes: 855 additions & 0 deletions openmp/runtime/src/include/50/omp_lib.f.var

Large diffs are not rendered by default.

524 changes: 524 additions & 0 deletions openmp/runtime/src/include/50/omp_lib.f90.var

Large diffs are not rendered by default.

644 changes: 644 additions & 0 deletions openmp/runtime/src/include/50/omp_lib.h.var

Large diffs are not rendered by default.

515 changes: 515 additions & 0 deletions openmp/runtime/src/include/50/ompt.h.var

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion openmp/runtime/src/kmp_runtime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ char const __kmp_version_alt_comp[] = KMP_VERSION_PREFIX "alternative compiler s
#endif /* defined(KMP_GOMP_COMPAT) */

char const __kmp_version_omp_api[] = KMP_VERSION_PREFIX "API version: "
#if OMP_45_ENABLED
#if OMP_50_ENABLED
"5.0 (201611)";
#elif OMP_45_ENABLED
"4.5 (201511)";
#elif OMP_40_ENABLED
"4.0 (201307)";
Expand Down
4 changes: 3 additions & 1 deletion openmp/runtime/src/kmp_version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ int const __kmp_version_major = KMP_VERSION_MAJOR;
int const __kmp_version_minor = KMP_VERSION_MINOR;
int const __kmp_version_build = KMP_VERSION_BUILD;
int const __kmp_openmp_version =
#if OMP_45_ENABLED
#if OMP_50_ENABLED
201611;
#elif OMP_45_ENABLED
201511;
#elif OMP_40_ENABLED
201307;
Expand Down