| Index: src/ia32/lithium-codegen-ia32.cc
 | 
| diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc
 | 
| index f2d20ac44c701d1b94f4fcd598804e3b43415d9a..0c1e24aeda85cf28ca3535c6b0d9c4fafc6a0336 100644
 | 
| --- a/src/ia32/lithium-codegen-ia32.cc
 | 
| +++ b/src/ia32/lithium-codegen-ia32.cc
 | 
| @@ -833,7 +833,8 @@ void LCodeGen::DeoptimizeIf(Condition cc, LEnvironment* environment) {
 | 
|    Deoptimizer::BailoutType bailout_type = info()->IsStub()
 | 
|        ? Deoptimizer::LAZY
 | 
|        : Deoptimizer::EAGER;
 | 
| -  Address entry = Deoptimizer::GetDeoptimizationEntry(id, bailout_type);
 | 
| +  Address entry =
 | 
| +      Deoptimizer::GetDeoptimizationEntry(isolate(), id, bailout_type);
 | 
|    if (entry == NULL) {
 | 
|      Abort("bailout was not prepared");
 | 
|      return;
 | 
| 
 |