| Index: src/code-stubs.cc
 | 
| diff --git a/src/code-stubs.cc b/src/code-stubs.cc
 | 
| index 032fdb30b394dcc6d6720dbd33b8962a1b423651..5f2e5b727486984291e6cc11f9d69c7103333e14 100644
 | 
| --- a/src/code-stubs.cc
 | 
| +++ b/src/code-stubs.cc
 | 
| @@ -73,7 +73,7 @@ void CodeStubDescriptor::Initialize(Register stack_parameter_count,
 | 
|  
 | 
|  bool CodeStub::FindCodeInCache(Code** code_out) {
 | 
|    UnseededNumberDictionary* stubs = isolate()->heap()->code_stubs();
 | 
| -  int index = stubs->FindEntry(GetKey());
 | 
| +  int index = stubs->FindEntry(isolate(), GetKey());
 | 
|    if (index != UnseededNumberDictionary::kNotFound) {
 | 
|      *code_out = Code::cast(stubs->ValueAt(index));
 | 
|      return true;
 | 
| 
 |