| Index: src/ic/ic-inl.h
|
| diff --git a/src/ic/ic-inl.h b/src/ic/ic-inl.h
|
| index c83c30ca459ac7da410464b18dd79580bac778d5..1b5d0632700db1a41d9cde4eb73f9f307da73014 100644
|
| --- a/src/ic/ic-inl.h
|
| +++ b/src/ic/ic-inl.h
|
| @@ -93,7 +93,8 @@ Code* IC::target() const {
|
| }
|
|
|
| bool IC::IsHandler(Object* object) {
|
| - return (object->IsSmi() && (object != nullptr)) || (object->IsTuple3()) ||
|
| + return (object->IsSmi() && (object != nullptr)) || object->IsTuple3() ||
|
| + object->IsFixedArray() ||
|
| (object->IsCode() && Code::cast(object)->is_handler());
|
| }
|
|
|
|
|