| commit | d93e374e273dd45f5d829399da1d4201bf46057e | [log] [tgz] |
|---|---|---|
| author | Vladimir Marko <vmarko@google.com> | Wed Jul 18 10:58:13 2018 +0100 |
| committer | Vladimir Marko <vmarko@google.com> | Thu Jul 19 16:04:38 2018 +0100 |
| tree | 280dc72b2aec4696bbc35ad39ca8d3479107380e | |
| parent | 7f7f9d3991f3a55da8934a3b72890d4776373598 [diff] [blame] |
ObjPtr<>-ify ArtMethod and mirror::Method. And clean up some forgotten things after old CLs. Test: m test-art-host-gtest Test: testrunner.py --host --optimizing Bug: 31113334 Change-Id: I8af0e845c24d674d0efab21d80c29949b1cc0593
diff --git a/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc b/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc index 505e183..9cae3ae 100644 --- a/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc +++ b/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc
@@ -2146,7 +2146,7 @@ sm_.AdvancePointer(self->GetJniEnv()); if (is_static) { - sm_.AdvanceHandleScope((**sp)->GetDeclaringClass()); + sm_.AdvanceHandleScope((**sp)->GetDeclaringClass().Ptr()); } // else "this" reference is already handled by QuickArgumentVisitor. } }