From 4f1f2b7a5b573bc9a2480c7607f02c2e4cbfb2be Mon Sep 17 00:00:00 2001 From: Kelvin Li Date: Wed, 12 Feb 2020 15:38:54 -0500 Subject: [PATCH] [OpenMP] update strings output of libomp.so [NFC] Change the string from "Intel(R) OMP" to "LLVM OMP" in libomp.so Differential Revision: https://reviews.llvm.org/D74462 --- openmp/runtime/src/kmp_version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmp/runtime/src/kmp_version.h b/openmp/runtime/src/kmp_version.h index 9e726b3..6ce40ee 100644 --- a/openmp/runtime/src/kmp_version.h +++ b/openmp/runtime/src/kmp_version.h @@ -30,7 +30,7 @@ extern "C" { just before version string. */ #define KMP_VERSION_MAGIC_STR "\x00@(#) " #define KMP_VERSION_MAGIC_LEN 6 // Length of KMP_VERSION_MAGIC_STR. -#define KMP_VERSION_PREF_STR "Intel(R) OMP " +#define KMP_VERSION_PREF_STR "LLVM OMP " #define KMP_VERSION_PREFIX KMP_VERSION_MAGIC_STR KMP_VERSION_PREF_STR /* declare all the version string constants for KMP_VERSION env. variable */ -- 2.7.4