[compiler-rt] r329962 - [asan] Remove malloc_context_size=0 from asan_device_setup.

Evgeniy Stepanov via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 12 15:06:18 PDT 2018


Author: eugenis
Date: Thu Apr 12 15:06:18 2018
New Revision: 329962

URL: http://llvm.org/viewvc/llvm-project?rev=329962&view=rev
Log:
[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.

Modified:
    compiler-rt/trunk/lib/asan/scripts/asan_device_setup

Modified: compiler-rt/trunk/lib/asan/scripts/asan_device_setup
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/scripts/asan_device_setup?rev=329962&r1=329961&r2=329962&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/scripts/asan_device_setup (original)
+++ compiler-rt/trunk/lib/asan/scripts/asan_device_setup Thu Apr 12 15:06:18 2018
@@ -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




More information about the llvm-commits mailing list