[Openmp-commits] [openmp] 4f1f2b7 - [OpenMP] update strings output of libomp.so [NFC]

Kelvin Li via Openmp-commits openmp-commits at lists.llvm.org
Wed Feb 12 12:46:09 PST 2020


Author: Kelvin Li
Date: 2020-02-12T15:45:55-05:00
New Revision: 4f1f2b7a5b573bc9a2480c7607f02c2e4cbfb2be

URL: https://github.com/llvm/llvm-project/commit/4f1f2b7a5b573bc9a2480c7607f02c2e4cbfb2be
DIFF: https://github.com/llvm/llvm-project/commit/4f1f2b7a5b573bc9a2480c7607f02c2e4cbfb2be.diff

LOG: [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

Added: 
    

Modified: 
    openmp/runtime/src/kmp_version.h

Removed: 
    


################################################################################
diff  --git a/openmp/runtime/src/kmp_version.h b/openmp/runtime/src/kmp_version.h
index 9e726b3805b2..6ce40eecb5de 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 */


        


More information about the Openmp-commits mailing list