| Index: src/ia32/full-codegen-ia32.cc
|
| diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc
|
| index 535f2c2c63e7b68d50307d7465f4bda6cae68708..7b455563b5b83d41c967647c7c7e5a73de2f2145 100644
|
| --- a/src/ia32/full-codegen-ia32.cc
|
| +++ b/src/ia32/full-codegen-ia32.cc
|
| @@ -5133,6 +5133,10 @@ void FullCodeGenerator::EmitLiteralCompareTypeof(Expression* expr,
|
| __ JumpIfSmi(eax, if_false);
|
| __ CmpObjectType(eax, SYMBOL_TYPE, edx);
|
| Split(equal, if_true, if_false, fall_through);
|
| + } else if (String::Equals(check, factory->float32x4_string())) {
|
| + __ JumpIfSmi(eax, if_false);
|
| + __ CmpObjectType(eax, FLOAT32X4_TYPE, edx);
|
| + Split(equal, if_true, if_false, fall_through);
|
| } else if (String::Equals(check, factory->boolean_string())) {
|
| __ cmp(eax, isolate()->factory()->true_value());
|
| __ j(equal, if_true);
|
|
|