| Index: src/mips/full-codegen-mips.cc
|
| diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc
|
| index 841ee4b99586bfae8736407212c72db69e2e0622..b76e85660f5fe76efbeff5b8ee6929385a34adaf 100644
|
| --- a/src/mips/full-codegen-mips.cc
|
| +++ b/src/mips/full-codegen-mips.cc
|
| @@ -5222,6 +5222,10 @@ void FullCodeGenerator::EmitLiteralCompareTypeof(Expression* expr,
|
| __ JumpIfSmi(v0, if_false);
|
| __ GetObjectType(v0, v0, a1);
|
| Split(eq, a1, Operand(SYMBOL_TYPE), if_true, if_false, fall_through);
|
| + } else if (String::Equals(check, factory->float32x4_string())) {
|
| + __ JumpIfSmi(v0, if_false);
|
| + __ GetObjectType(v0, v0, a1);
|
| + Split(eq, a1, Operand(FLOAT32X4_TYPE), if_true, if_false, fall_through);
|
| } else if (String::Equals(check, factory->boolean_string())) {
|
| __ LoadRoot(at, Heap::kTrueValueRootIndex);
|
| __ Branch(if_true, eq, v0, Operand(at));
|
|
|