| Index: src/ic.cc
|
| diff --git a/src/ic.cc b/src/ic.cc
|
| index 8e5f0ae6b2e6c467da242cdcfe1d2337bce0f26f..54566592c67021832a8eebc22d07e5518ee2cc5f 100644
|
| --- a/src/ic.cc
|
| +++ b/src/ic.cc
|
| @@ -1846,7 +1846,8 @@ Handle<Code> KeyedStoreIC::StoreElementStub(Handle<JSObject> receiver,
|
| if (store_mode != STANDARD_STORE) {
|
| int external_arrays = 0;
|
| for (int i = 0; i < target_receiver_maps.length(); ++i) {
|
| - if (target_receiver_maps[i]->has_external_array_elements()) {
|
| + if (target_receiver_maps[i]->has_external_array_elements() ||
|
| + target_receiver_maps[i]->has_fixed_typed_array_elements()) {
|
| external_arrays++;
|
| }
|
| }
|
|
|