diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2018-04-12 22:06:18 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2018-04-12 22:06:18 +0000 |
commit | 366ea7115d13f9d873921e081d85f8655b712815 (patch) | |
tree | 5ebc084e293ee8911a6e89b685d15b9d512c0bb0 | |
parent | e1938cbc8730a809500ae77cf3f34b95ba8cbb37 (diff) | |
download | bcm5719-llvm-366ea7115d13f9d873921e081d85f8655b712815.tar.gz bcm5719-llvm-366ea7115d13f9d873921e081d85f8655b712815.zip |
[asan] Remove malloc_context_size=0 from asan_device_setup.
This line was added in
r243679 - [asan] Support arm64 devices in asan_device_setup
without any good reason.
llvm-svn: 329962
-rwxr-xr-x | compiler-rt/lib/asan/scripts/asan_device_setup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/scripts/asan_device_setup b/compiler-rt/lib/asan/scripts/asan_device_setup index ca008c03743..5e679e36651 100755 --- a/compiler-rt/lib/asan/scripts/asan_device_setup +++ b/compiler-rt/lib/asan/scripts/asan_device_setup @@ -309,7 +309,7 @@ if [[ -n "$ASAN_RT64" ]]; then cp "$ASAN_RT_PATH/$ASAN_RT64" "$TMPDIR/" fi -ASAN_OPTIONS=start_deactivated=1,malloc_context_size=0 +ASAN_OPTIONS=start_deactivated=1 # The name of a symlink to libclang_rt.asan-$ARCH-android.so used in LD_PRELOAD. # The idea is to have the same name in lib and lib64 to keep it from falling |