Index: src/ic.cc |
diff --git a/src/ic.cc b/src/ic.cc |
index 09444b337aba82437c5c4b80ea8b37fd7ad0ab7c..32efa5f0eee5f915a5c84f287f18836211a90a24 100644 |
--- a/src/ic.cc |
+++ b/src/ic.cc |
@@ -1945,8 +1945,7 @@ RUNTIME_FUNCTION(SharedStoreIC_ExtendStorage) { |
int new_unused = transition->unused_property_fields(); |
int new_size = old_storage->length() + new_unused + 1; |
- Handle<FixedArray> new_storage = isolate->factory()->CopySizeFixedArray( |
- old_storage, new_size); |
+ Handle<FixedArray> new_storage = FixedArray::CopySize(old_storage, new_size); |
Handle<Object> to_store = value; |