diff options
Diffstat (limited to 'runtime/stack.cc')
| -rw-r--r-- | runtime/stack.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/stack.cc b/runtime/stack.cc index 97a8d01e05..48becf688f 100644 --- a/runtime/stack.cc +++ b/runtime/stack.cc @@ -28,7 +28,6 @@ #include "runtime.h" #include "thread.h" #include "thread_list.h" -#include "throw_location.h" #include "verify_object-inl.h" #include "vmap_table.h" @@ -57,10 +56,6 @@ mirror::Object* ShadowFrame::GetThisObject(uint16_t num_ins) const { } } -ThrowLocation ShadowFrame::GetCurrentLocationForThrow() const { - return ThrowLocation(GetThisObject(), GetMethod(), GetDexPC()); -} - size_t ManagedStack::NumJniShadowFrameReferences() const { size_t count = 0; for (const ManagedStack* current_fragment = this; current_fragment != NULL; |