Index: runtime/lib/integers.cc |
diff --git a/runtime/lib/integers.cc b/runtime/lib/integers.cc |
index a0397d51379382c976c71c4337597fcd5026a6cb..f3b2337bad91c4226ef1455eceb226bbd663f536 100644 |
--- a/runtime/lib/integers.cc |
+++ b/runtime/lib/integers.cc |
@@ -322,7 +322,7 @@ DEFINE_NATIVE_ENTRY(Integer_leftShiftWithMask32, 3) { |
// Shift count is too large.. |
const Instance& exception = |
Instance::Handle(isolate->object_store()->out_of_memory()); |
- Exceptions::Throw(exception); |
+ Exceptions::Throw(isolate, exception); |
} |
const Smi& smi_shift_count = Smi::Cast(shift_count); |
const Integer& shift_result = Integer::Handle( |
@@ -414,7 +414,7 @@ DEFINE_NATIVE_ENTRY(Mint_shlFromInt, 2) { |
// into dart code or allocating any code. |
const Instance& exception = |
Instance::Handle(isolate->object_store()->out_of_memory()); |
- Exceptions::Throw(exception); |
+ Exceptions::Throw(isolate, exception); |
UNREACHABLE(); |
return 0; |
} |
@@ -442,7 +442,7 @@ DEFINE_NATIVE_ENTRY(Bigint_shlFromInt, 2) { |
// into dart code or allocating any code. |
const Instance& exception = |
Instance::Handle(isolate->object_store()->out_of_memory()); |
- Exceptions::Throw(exception); |
+ Exceptions::Throw(isolate, exception); |
UNREACHABLE(); |
return 0; |
} |