diff options
author | 2018-10-16 13:09:32 -0700 | |
---|---|---|
committer | 2018-10-17 12:17:28 -0700 | |
commit | 6e8977690147b75096c0a993efb53ae329e3fd2c (patch) | |
tree | dd2e653b893e2d91a9c238a3468f66a3def98743 /openjdkjvmti/ti_method.cc | |
parent | 0de385f9eb5f8c066121ea2d43e8b8eea6a726fa (diff) |
ART: Refactor for bugprone-argument-comment
Handles openjdkjvmti.
Bug: 116054210
Test: WITH_TIDY=1 mmma art
Change-Id: Ic73e3f32b08f3b6d9300428ad95d12a696db0458
Diffstat (limited to 'openjdkjvmti/ti_method.cc')
-rw-r--r-- | openjdkjvmti/ti_method.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openjdkjvmti/ti_method.cc b/openjdkjvmti/ti_method.cc index 295894157c..7d69c89d1e 100644 --- a/openjdkjvmti/ti_method.cc +++ b/openjdkjvmti/ti_method.cc @@ -547,7 +547,7 @@ class CommonLocalVariableClosure : public art::Closure { return; } bool needs_instrument = !visitor.IsShadowFrame(); - uint32_t pc = visitor.GetDexPc(/*abort_on_failure*/ false); + uint32_t pc = visitor.GetDexPc(/*abort_on_failure=*/ false); if (pc == art::dex::kDexNoIndex) { // Cannot figure out current PC. result_ = ERR(OPAQUE_FRAME); |