| Index: src/ic.cc
|
| diff --git a/src/ic.cc b/src/ic.cc
|
| index 25f875a8379308e3230592f8a74348dffa5672df..ef38f7cf2009340608aa48b0618119663c9e18c5 100644
|
| --- a/src/ic.cc
|
| +++ b/src/ic.cc
|
| @@ -1808,7 +1808,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++;
|
| }
|
| }
|
|
|