[compiler-rt] r283378 - [asan] Fixup: Switch to using dynamic shadow offset on iOS

Anna Zaks via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 5 13:45:35 PDT 2016


Author: zaks
Date: Wed Oct  5 15:45:34 2016
New Revision: 283378

URL: http://llvm.org/viewvc/llvm-project?rev=283378&view=rev
Log:
[asan] Fixup: Switch to using dynamic shadow offset on iOS

Address lint comments.

Modified:
    compiler-rt/trunk/lib/sanitizer_common/sanitizer_mac.cc

Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_mac.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_mac.cc?rev=283378&r1=283377&r2=283378&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_mac.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_mac.cc Wed Oct  5 15:45:34 2016
@@ -80,7 +80,7 @@ extern "C" {
 
 // From <mach/mach_vm.h>, but we don't have that file on iOS.
 extern "C" {
-  extern kern_return_t mach_vm_region_recurse (
+  extern kern_return_t mach_vm_region_recurse(
     vm_map_t target_task,
     mach_vm_address_t *address,
     mach_vm_size_t *size,




More information about the llvm-commits mailing list