| Index: src/code-stubs.cc
|
| diff --git a/src/code-stubs.cc b/src/code-stubs.cc
|
| index 0840f6c21f4dd966a66ed94f65075be37a8814eb..c0ff6c56c2617cc19f9d6ac34ccb3ff0b30e3d76 100644
|
| --- a/src/code-stubs.cc
|
| +++ b/src/code-stubs.cc
|
| @@ -135,7 +135,6 @@ void CodeStub::VerifyPlatformFeatures(Isolate* isolate) {
|
|
|
|
|
| Handle<Code> CodeStub::GetCode(Isolate* isolate) {
|
| - Factory* factory = isolate->factory();
|
| Heap* heap = isolate->heap();
|
| Code* code;
|
| if (UseSpecialCache()
|
| @@ -170,7 +169,7 @@ Handle<Code> CodeStub::GetCode(Isolate* isolate) {
|
| } else {
|
| // Update the dictionary and the root in Heap.
|
| Handle<UnseededNumberDictionary> dict =
|
| - factory->DictionaryAtNumberPut(
|
| + UnseededNumberDictionary::AtNumberPut(
|
| Handle<UnseededNumberDictionary>(heap->code_stubs()),
|
| GetKey(),
|
| new_object);
|
|
|