diff options
author | Juergen Ributzka <juergen@apple.com> | 2015-02-04 19:14:35 +0000 |
---|---|---|
committer | Juergen Ributzka <juergen@apple.com> | 2015-02-04 19:14:35 +0000 |
commit | 6e25858b5cfc2c88ca940cf9181904ad7d4bd32d (patch) | |
tree | f27747b452954685711fdd39b347bebc83a961cb /compiler-rt/lib/asan/asan_malloc_mac.cc | |
parent | 362a8137369609147ba61eb43881db50a37750eb (diff) | |
download | bcm5719-llvm-6e25858b5cfc2c88ca940cf9181904ad7d4bd32d.tar.gz bcm5719-llvm-6e25858b5cfc2c88ca940cf9181904ad7d4bd32d.zip |
Revert "[ASan] Add the new __asan_mz_* symbols to asan_interface_internal.h"
Reverting r228137 to unbreak the build bots.
llvm-svn: 228172
Diffstat (limited to 'compiler-rt/lib/asan/asan_malloc_mac.cc')
-rw-r--r-- | compiler-rt/lib/asan/asan_malloc_mac.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/asan_malloc_mac.cc b/compiler-rt/lib/asan/asan_malloc_mac.cc index c145ee6e393..d7a6307c9bd 100644 --- a/compiler-rt/lib/asan/asan_malloc_mac.cc +++ b/compiler-rt/lib/asan/asan_malloc_mac.cc @@ -156,7 +156,7 @@ namespace { // wrappers, as they are basically copied from there. extern "C" SANITIZER_INTERFACE_ATTRIBUTE -size_t __asan_mz_size(malloc_zone_t *zone, const void* ptr) { +size_t __asan_mz_size(malloc_zone_t* zone, const void* ptr) { return asan_mz_size(ptr); } |