diff options
| author | 2018-05-22 16:46:43 +0000 | |
|---|---|---|
| committer | 2018-05-22 16:46:43 +0000 | |
| commit | f31343f1eab771010b3f293366149d2524f30902 (patch) | |
| tree | 5187b2bceee4c7d5347750dc6ba0020172d5ef51 /compiler/dex/inline_method_analyser.cc | |
| parent | e816389b61d17b9a82d8e61426ddfcce20e1238c (diff) | |
| parent | 8268cb677bd92bfbcfec7e803775c29687494e53 (diff) | |
Merge "Remove support for Valgrind in ART."
Diffstat (limited to 'compiler/dex/inline_method_analyser.cc')
| -rw-r--r-- | compiler/dex/inline_method_analyser.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/dex/inline_method_analyser.cc b/compiler/dex/inline_method_analyser.cc index dc044c1210..fe8b766d0f 100644 --- a/compiler/dex/inline_method_analyser.cc +++ b/compiler/dex/inline_method_analyser.cc @@ -724,7 +724,8 @@ bool InlineMethodAnalyser::ComputeSpecialAccessorInfo(ArtMethod* method, return false; } DCHECK_GE(field->GetOffset().Int32Value(), 0); - // Do not interleave function calls with bit field writes to placate valgrind. Bug: 27552451. + // Historical note: We made sure not to 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; |