| Index: src/ic/ic-inl.h
|
| diff --git a/src/ic/ic-inl.h b/src/ic/ic-inl.h
|
| index 55572f75277ea20f28537596cda393ed6a183709..8245047556bf1e0ef24b046a4d96371f0d5921a9 100644
|
| --- a/src/ic/ic-inl.h
|
| +++ b/src/ic/ic-inl.h
|
| @@ -173,6 +173,8 @@ JSFunction* IC::GetRootConstructor(Map* receiver_map, Context* native_context) {
|
| return native_context->string_function();
|
| } else if (receiver_map->instance_type() == SYMBOL_TYPE) {
|
| return native_context->symbol_function();
|
| + } else if (receiver_map->instance_type() == FLOAT32X4_TYPE) {
|
| + return native_context->float32x4_function();
|
| } else {
|
| return NULL;
|
| }
|
|
|