Index: src/ia32/deoptimizer-ia32.cc |
diff --git a/src/ia32/deoptimizer-ia32.cc b/src/ia32/deoptimizer-ia32.cc |
index 82d3f1e76ccf6f88542db935646f58270ebe8239..11c392bdfcac5fd84e4e6806a116671bbeda450a 100644 |
--- a/src/ia32/deoptimizer-ia32.cc |
+++ b/src/ia32/deoptimizer-ia32.cc |
@@ -550,7 +550,9 @@ void Deoptimizer::EntryGenerator::Generate() { |
__ mov(Operand(esp, 2 * kPointerSize), ebx); // Bailout id. |
__ mov(Operand(esp, 3 * kPointerSize), ecx); // Code address or 0. |
__ mov(Operand(esp, 4 * kPointerSize), edx); // Fp-to-sp delta. |
- __ CallCFunction(ExternalReference::new_deoptimizer_function(), 5); |
+ __ CallCFunction( |
+ ExternalReference::new_deoptimizer_function(masm()->isolate()), |
+ 5); |
// Preserve deoptimizer object in register eax and get the input |
// frame descriptor pointer. |
@@ -598,7 +600,9 @@ void Deoptimizer::EntryGenerator::Generate() { |
__ push(eax); |
__ PrepareCallCFunction(1, ebx); |
__ mov(Operand(esp, 0 * kPointerSize), eax); |
- __ CallCFunction(ExternalReference::compute_output_frames_function(), 1); |
+ __ CallCFunction( |
+ ExternalReference::compute_output_frames_function(masm()->isolate()), |
+ 1); |
__ pop(eax); |
// Replace the current frame with the output frames. |