From 8b362a87d52a6668ffd2283ef6ffc274315f41c8 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Tue, 22 May 2018 20:54:14 +0000 Subject: Revert "Remove support for Valgrind in ART." This reverts commit 8268cb677bd92bfbcfec7e803775c29687494e53. Reason for revert: ASAN failures Change-Id: I7e66d3f3fb461ae4f6dea6ec7d506b7dface3402 Test: SANITIZE_HOST=address m test-art-host Bug: 77856586 Bug: 29282211 --- compiler/dex/inline_method_analyser.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'compiler/dex/inline_method_analyser.cc') diff --git a/compiler/dex/inline_method_analyser.cc b/compiler/dex/inline_method_analyser.cc index fe8b766d0f..dc044c1210 100644 --- a/compiler/dex/inline_method_analyser.cc +++ b/compiler/dex/inline_method_analyser.cc @@ -724,8 +724,7 @@ bool InlineMethodAnalyser::ComputeSpecialAccessorInfo(ArtMethod* method, return false; } DCHECK_GE(field->GetOffset().Int32Value(), 0); - // Historical note: We made sure not to interleave function calls with bit field writes to - // placate Valgrind. Bug: 27552451. + // Do not interleave function calls with bit field writes to placate valgrind. Bug: 27552451. uint32_t field_offset = field->GetOffset().Uint32Value(); bool is_volatile = field->IsVolatile(); result->field_idx = field_idx; -- cgit v1.2.3-59-g8ed1b