diff options
Diffstat (limited to 'runtime/thread.h')
-rw-r--r-- | runtime/thread.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/thread.h b/runtime/thread.h index 8b6771e60c..b9b93dd8f1 100644 --- a/runtime/thread.h +++ b/runtime/thread.h @@ -45,7 +45,7 @@ namespace art { namespace mirror { - class AbstractMethod; + class ArtMethod; class Array; class Class; class ClassLoader; @@ -318,13 +318,13 @@ class PACKED(4) Thread { long_jump_context_ = context; } - mirror::AbstractMethod* GetCurrentMethod(uint32_t* dex_pc) const + mirror::ArtMethod* GetCurrentMethod(uint32_t* dex_pc) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); ThrowLocation GetCurrentLocationForThrow() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); void SetTopOfStack(void* stack, uintptr_t pc) { - mirror::AbstractMethod** top_method = reinterpret_cast<mirror::AbstractMethod**>(stack); + mirror::ArtMethod** top_method = reinterpret_cast<mirror::ArtMethod**>(stack); managed_stack_.SetTopQuickFrame(top_method); managed_stack_.SetTopQuickFramePc(pc); } |