| Index: src/mips/code-stubs-mips.cc
|
| diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc
|
| index 07a8be4006ce6fc5eb6983917953946e7bf76985..4231e9b442a2448389a1a4f8b1f2bb446b99dbbd 100644
|
| --- a/src/mips/code-stubs-mips.cc
|
| +++ b/src/mips/code-stubs-mips.cc
|
| @@ -295,6 +295,8 @@ static void EmitIdenticalObjectComparison(MacroAssembler* masm, Label* slow,
|
| __ Branch(slow, greater, t4, Operand(FIRST_SPEC_OBJECT_TYPE));
|
| // Call runtime on identical symbols since we need to throw a TypeError.
|
| __ Branch(slow, eq, t4, Operand(SYMBOL_TYPE));
|
| + // Call runtime on identical SIMD values since we must throw a TypeError.
|
| + __ Branch(slow, eq, t4, Operand(FLOAT32X4_TYPE));
|
| if (is_strong(strength)) {
|
| // Call the runtime on anything that is converted in the semantics, since
|
| // we need to throw a TypeError. Smis have already been ruled out.
|
| @@ -309,6 +311,8 @@ static void EmitIdenticalObjectComparison(MacroAssembler* masm, Label* slow,
|
| __ Branch(slow, greater, t4, Operand(FIRST_SPEC_OBJECT_TYPE));
|
| // Call runtime on identical symbols since we need to throw a TypeError.
|
| __ Branch(slow, eq, t4, Operand(SYMBOL_TYPE));
|
| + // Call runtime on identical SIMD values since we must throw a TypeError.
|
| + __ Branch(slow, eq, t4, Operand(FLOAT32X4_TYPE));
|
| if (is_strong(strength)) {
|
| // Call the runtime on anything that is converted in the semantics,
|
| // since we need to throw a TypeError. Smis and heap numbers have
|
|
|