commit | 14691c5e786e8c2c5734f687e4c96217340771be | [log] [tgz] |
---|---|---|
author | Nicolas Geoffray <ngeoffray@google.com> | Thu Mar 05 10:40:17 2015 +0000 |
committer | Nicolas Geoffray <ngeoffray@google.com> | Mon Mar 09 10:09:33 2015 +0000 |
tree | 7c2156671b323c70ffdd1d48d5e2f1d1de79c5fc | |
parent | 3d7d2af4c6502b771b032ee9bf3ab30e78f9c60d [diff] [blame] |
Compute the right catch location for the debugger. Also remove tls ThrowLocation, it is not needed anymore. Change-Id: I78fddf09ce968ca475e39c17fa76d699c589c8d9
diff --git a/runtime/entrypoints/quick/quick_deoptimization_entrypoints.cc b/runtime/entrypoints/quick/quick_deoptimization_entrypoints.cc index 14ab320..d88d262 100644 --- a/runtime/entrypoints/quick/quick_deoptimization_entrypoints.cc +++ b/runtime/entrypoints/quick/quick_deoptimization_entrypoints.cc
@@ -29,7 +29,7 @@ extern "C" void artDeoptimize(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { ScopedQuickEntrypointChecks sqec(self); - self->SetException(ThrowLocation(), Thread::GetDeoptimizationException()); + self->SetException(Thread::GetDeoptimizationException()); self->QuickDeliverException(); }