| Index: src/ic/handler-compiler.cc
|
| diff --git a/src/ic/handler-compiler.cc b/src/ic/handler-compiler.cc
|
| index 04b8fb0c8cd436e804b86af5ca5d29500952f3db..9e7f28d37c5fc9cc0a73009c810da51d10d5d80c 100644
|
| --- a/src/ic/handler-compiler.cc
|
| +++ b/src/ic/handler-compiler.cc
|
| @@ -107,6 +107,8 @@ Register NamedLoadHandlerCompiler::FrontendHeader(Register object_reg,
|
| function_index = Context::SYMBOL_FUNCTION_INDEX;
|
| } else if (map()->instance_type() == HEAP_NUMBER_TYPE) {
|
| function_index = Context::NUMBER_FUNCTION_INDEX;
|
| + } else if (map()->instance_type() == FLOAT32X4_TYPE) {
|
| + function_index = Context::FLOAT32X4_FUNCTION_INDEX;
|
| } else if (*map() == isolate()->heap()->boolean_map()) {
|
| function_index = Context::BOOLEAN_FUNCTION_INDEX;
|
| } else {
|
|
|