Index: src/code-stubs.cc |
diff --git a/src/code-stubs.cc b/src/code-stubs.cc |
index c6071554135dae53f3c3b01cad935a8b80f28222..812012c3dc66f7269baa2c36dd3417ad5b17a882 100644 |
--- a/src/code-stubs.cc |
+++ b/src/code-stubs.cc |
@@ -73,7 +73,7 @@ |
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; |