diff options
author | 2018-12-28 18:58:01 +0000 | |
---|---|---|
committer | 2018-12-28 18:58:01 +0000 | |
commit | 90793b3f3fa3fee04b196555f1656d432993f799 (patch) | |
tree | 2371a2ad64d962215d7b99a507fe5ff67624c290 /compiler/exception_test.cc | |
parent | 9f55716cadd84ad509a4fd3bb0a0202038cf11bd (diff) | |
parent | 3db70689e3e1c92344d436a8ea4265046bdef449 (diff) |
Merge "ART: Refactor for bugprone-argument-comment"
Diffstat (limited to 'compiler/exception_test.cc')
-rw-r--r-- | compiler/exception_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/exception_test.cc b/compiler/exception_test.cc index 80c0a6883d..f0f179ca14 100644 --- a/compiler/exception_test.cc +++ b/compiler/exception_test.cc @@ -187,14 +187,14 @@ TEST_F(ExceptionTest, StackTraceElement) { } fake_stack.push_back(method_g_->GetOatQuickMethodHeader(0)->ToNativeQuickPc( - method_g_, kDexPc, /* is_catch_handler */ false)); // return pc + method_g_, kDexPc, /* is_for_catch_handler= */ false)); // return pc // Create/push fake 16byte stack frame for method g fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_)); fake_stack.push_back(0); fake_stack.push_back(0); fake_stack.push_back(method_g_->GetOatQuickMethodHeader(0)->ToNativeQuickPc( - method_g_, kDexPc, /* is_catch_handler */ false)); // return pc + method_g_, kDexPc, /* is_for_catch_handler= */ false)); // return pc // Create/push fake 16byte stack frame for method f fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_)); |