summaryrefslogtreecommitdiff
path: root/src/interp/interp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/interp.cc')
-rw-r--r--src/interp/interp.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interp/interp.cc b/src/interp/interp.cc
index cb5623d8..fe333b42 100644
--- a/src/interp/interp.cc
+++ b/src/interp/interp.cc
@@ -2615,7 +2615,8 @@ RunResult Thread::DoThrow(Exception::Ptr exn) {
auto iter = handlers.rbegin();
while (iter != handlers.rend()) {
const HandlerDesc& handler = *iter;
- if (pc >= handler.try_start_offset && pc < handler.try_end_offset) {
+ // pc points to the *next* instruction by the time we're in DoThrow.
+ if (pc > handler.try_start_offset && pc <= handler.try_end_offset) {
// For a try-delegate, skip part of the traversal by directly going
// up to an outer handler specified by the delegate depth.
if (handler.kind == HandlerKind::Delegate) {