| Index: src/code-stubs.cc
|
| diff --git a/src/code-stubs.cc b/src/code-stubs.cc
|
| index 7d54293cde923b650da53d7dacbfa1172a95d054..92b46bae0fb67688e962d68e118741999af3745c 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(isolate(), GetKey());
|
| + int index = stubs->FindEntry(GetKey());
|
| if (index != UnseededNumberDictionary::kNotFound) {
|
| *code_out = Code::cast(stubs->ValueAt(index));
|
| return true;
|
|
|