[ASan] match type of arguments to format string on Mac.

llvm-svn: 158068
This commit is contained in:
Alexey Samsonov 2012-06-06 13:44:19 +00:00
parent 8bafdd020e
commit d44cb4cb8a
1 changed files with 3 additions and 2 deletions

View File

@ -208,7 +208,8 @@ bool AsanProcMaps::NextSegmentLoad(
filename_size);
}
if (FLAG_v >= 4)
Report("LC_SEGMENT: %p--%p %s+%p\n", *start, *end, filename, *offset);
Report("LC_SEGMENT: %p--%p %s+%p\n", (void*)*start, (void*)*end,
filename, (void*)*offset);
return true;
}
return false;
@ -340,7 +341,7 @@ mach_error_t __interception_allocate_island(void **ptr,
}
if (FLAG_v) {
Report("Mapped pages %p--%p for branch islands.\n",
kIslandBeg, kIslandEnd);
(void*)kIslandBeg, (void*)kIslandEnd);
}
// Should not be very performance-critical.
internal_memset(island_allocator_pos, 0xCC, kIslandEnd - kIslandBeg);