diff options
author | Roland Levillain <rpl@google.com> | 2017-06-08 18:03:48 +0100 |
---|---|---|
committer | Roland Levillain <rpl@google.com> | 2017-09-28 18:05:39 +0100 |
commit | b77b698f4550458725b72d3a451adca765f369cc (patch) | |
tree | edfc6a5b96325a6b4cdaa1a4e4428f1b677c7745 /runtime/quick_exception_handler.h | |
parent | e5b35ed787fbfb388d162361310bae5b0e7682a7 (diff) |
Check the to-space invariant on a delivered exception.
Test: art/test/testrunner/testrunner.py
Bug: 62339341
Bug: 12687968
Change-Id: Ida5e91031cd94429a72fcc9d4d1333d21dd07421
Diffstat (limited to 'runtime/quick_exception_handler.h')
-rw-r--r-- | runtime/quick_exception_handler.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/quick_exception_handler.h b/runtime/quick_exception_handler.h index 8090f9b035..12b63c933d 100644 --- a/runtime/quick_exception_handler.h +++ b/runtime/quick_exception_handler.h @@ -112,6 +112,10 @@ class QuickExceptionHandler { handler_dex_pc_ = dex_pc; } + bool GetClearException() const { + return clear_exception_; + } + void SetClearException(bool clear_exception) { clear_exception_ = clear_exception; } |