From 98ea9d9d82ab078ca10fa7f8e02eddda94cf1d98 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Fri, 19 Oct 2018 14:06:15 -0700 Subject: ART: Refactor for bugprone-argument-comment Handles runtime. Bug: 116054210 Test: WITH_TIDY=1 mmma art Change-Id: Ibc0d5086809d647f0ce4df5452eb84442d27ecf0 --- runtime/stack_map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/stack_map.h') diff --git a/runtime/stack_map.h b/runtime/stack_map.h index 5f44286089..811e23b2d2 100644 --- a/runtime/stack_map.h +++ b/runtime/stack_map.h @@ -358,7 +358,7 @@ class CodeInfo { ALWAYS_INLINE DexRegisterMap GetDexRegisterMapOf(StackMap stack_map) const { if (stack_map.HasDexRegisterMap()) { DexRegisterMap map(number_of_dex_registers_, DexRegisterLocation::Invalid()); - DecodeDexRegisterMap(stack_map.Row(), /* first_dex_register */ 0, &map); + DecodeDexRegisterMap(stack_map.Row(), /* first_dex_register= */ 0, &map); return map; } return DexRegisterMap(0, DexRegisterLocation::None()); -- cgit v1.2.3-59-g8ed1b