[compiler-rt] 371c94f - Fix a typo in an error message.

Eric Christopher via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 8 20:46:34 PDT 2020


Author: Eric Christopher
Date: 2020-07-08T20:43:05-07:00
New Revision: 371c94fca039bb85298756305758a56af129a1ce

URL: https://github.com/llvm/llvm-project/commit/371c94fca039bb85298756305758a56af129a1ce
DIFF: https://github.com/llvm/llvm-project/commit/371c94fca039bb85298756305758a56af129a1ce.diff

LOG: Fix a typo in an error message.

Added: 
    

Modified: 
    compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
index dffe2c9c4737..91caa6a35693 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
@@ -2210,7 +2210,7 @@ void CheckNoDeepBind(const char *filename, int flag) {
   if (flag & RTLD_DEEPBIND) {
     Report(
         "You are trying to dlopen a %s shared library with RTLD_DEEPBIND flag"
-        " which is incompatibe with sanitizer runtime "
+        " which is incompatible with sanitizer runtime "
         "(see https://github.com/google/sanitizers/issues/611 for details"
         "). If you want to run %s library under sanitizers please remove "
         "RTLD_DEEPBIND from dlopen flags.\n",


        


More information about the llvm-commits mailing list