Index: src/code-stubs.cc |
diff --git a/src/code-stubs.cc b/src/code-stubs.cc |
index c8feaddee6995df7b76df33e9aaca898196f3ba5..dd115f0135268d41017773b1fe8289c562419698 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; |