diff options
Diffstat (limited to 'runtime/thread.h')
-rw-r--r-- | runtime/thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/thread.h b/runtime/thread.h index 7ac4007419..b32e3c2637 100644 --- a/runtime/thread.h +++ b/runtime/thread.h @@ -573,8 +573,8 @@ class Thread { tlsPtr_.managed_stack.SetTopQuickFrame(top_method); } - void SetTopOfStackGenericJniTagged(ArtMethod** top_method) { - tlsPtr_.managed_stack.SetTopQuickFrameGenericJniTagged(top_method); + void SetTopOfStackTagged(ArtMethod** top_method) { + tlsPtr_.managed_stack.SetTopQuickFrameTagged(top_method); } void SetTopOfShadowStack(ShadowFrame* top) { |