diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2015-03-04 11:13:16 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-03-04 11:13:17 +0000 |
commit | 3d7d2af4c6502b771b032ee9bf3ab30e78f9c60d (patch) | |
tree | cc15416fa8208661fe98a19055fa4c98010a0e53 /runtime/quick_exception_handler.h | |
parent | 87896b3a1f97c815fe02c7490c1f27951c58bbbf (diff) | |
parent | 7642cfc90fc9c3ebfd8e3b5041915705c93b5cf0 (diff) | |
download | android_art-3d7d2af4c6502b771b032ee9bf3ab30e78f9c60d.tar.gz android_art-3d7d2af4c6502b771b032ee9bf3ab30e78f9c60d.tar.bz2 android_art-3d7d2af4c6502b771b032ee9bf3ab30e78f9c60d.zip |
Merge "Change how we report exceptions to the debugger."
Diffstat (limited to 'runtime/quick_exception_handler.h')
-rw-r--r-- | runtime/quick_exception_handler.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/quick_exception_handler.h b/runtime/quick_exception_handler.h index 162b1dc74c..a0e6a79299 100644 --- a/runtime/quick_exception_handler.h +++ b/runtime/quick_exception_handler.h @@ -44,8 +44,7 @@ class QuickExceptionHandler { UNREACHABLE(); } - void FindCatch(const ThrowLocation& throw_location, mirror::Throwable* exception, - bool is_exception_reported) + void FindCatch(const ThrowLocation& throw_location, mirror::Throwable* exception) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); void DeoptimizeStack() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); void UpdateInstrumentationStack() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |