[compiler-rt] eb9ca9d - Make linter happy

Julian Lettner via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 3 17:00:40 PDT 2020


Author: Julian Lettner
Date: 2020-06-03T17:00:33-07:00
New Revision: eb9ca9da3e94e0c0d5eb8d98a388e92da0df9f12

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

LOG: Make linter happy

Fixup for ba6b1b4353e33a7a36bcbad1d1c1157826197fd2.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp
index 9a0053a59a64..f0a62b66fd37 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp
@@ -840,9 +840,9 @@ bool DyldNeedsEnvVariable() {
   if (!&dyldVersionNumber) return true;
   // If running on OS X 10.11+ or iOS 9.0+, dyld will interpose even if
   // DYLD_INSERT_LIBRARIES is not set. However, checking OS version via
-  // GetMacosAlignedVersion() doesn't work for the simulator. Let's instead check
-  // `dyldVersionNumber`, which is exported by dyld, against a known version
-  // number from the first OS release where this appeared.
+  // GetMacosAlignedVersion() doesn't work for the simulator. Let's instead
+  // check `dyldVersionNumber`, which is exported by dyld, against a known
+  // version number from the first OS release where this appeared.
   return dyldVersionNumber < kMinDyldVersionWithAutoInterposition;
 }
 


        


More information about the llvm-commits mailing list