Make linter happy
authorJulian Lettner <julian.lettner@apple.com>
Wed, 3 Jun 2020 23:59:59 +0000 (16:59 -0700)
committerJulian Lettner <julian.lettner@apple.com>
Thu, 4 Jun 2020 00:00:33 +0000 (17:00 -0700)
Fixup for ba6b1b4353e33a7a36bcbad1d1c1157826197fd2.

compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp

index 9a0053a..f0a62b6 100644 (file)
@@ -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;
 }