From 1e13374baf7dfaf442ffbf9809c37c131d681eaf Mon Sep 17 00:00:00 2001 From: Evgenii Stepanov Date: Wed, 20 May 2015 12:30:59 -0700 Subject: Generalize Valgrind annotations in ART to support ASan. Also add redzones around non-fixed mem_map(s). Also extend -Wframe-larger-than limit to enable arm64 ASan build. Change-Id: Ie572481a25fead59fc8978d2c317a33ac418516c --- runtime/utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/utils.cc') diff --git a/runtime/utils.cc b/runtime/utils.cc index 4923342e8e..194d9fe853 100644 --- a/runtime/utils.cc +++ b/runtime/utils.cc @@ -1094,7 +1094,7 @@ void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix, ArtMethod* current_method, void* ucontext_ptr) { #if __linux__ // b/18119146 - if (RUNNING_ON_VALGRIND != 0) { + if (RUNNING_ON_MEMORY_TOOL != 0) { return; } -- cgit v1.2.3-59-g8ed1b