Index: src/runtime/runtime-internal.cc |
diff --git a/src/runtime/runtime-internal.cc b/src/runtime/runtime-internal.cc |
index 6843c1160cea1950e8efd6410c68415697dcc706..343d24fed49fc6adb4f4a5922d1ed22af23d42b4 100644 |
--- a/src/runtime/runtime-internal.cc |
+++ b/src/runtime/runtime-internal.cc |
@@ -37,10 +37,10 @@ RUNTIME_FUNCTION(Runtime_ReThrow) { |
} |
-RUNTIME_FUNCTION(Runtime_FindExceptionHandler) { |
+RUNTIME_FUNCTION(Runtime_UnwindAndFindExceptionHandler) { |
SealHandleScope shs(isolate); |
DCHECK(args.length() == 0); |
- return isolate->FindHandler(); |
+ return isolate->UnwindAndFindHandler(); |
} |