Index: src/mips64/code-stubs-mips64.cc |
diff --git a/src/mips64/code-stubs-mips64.cc b/src/mips64/code-stubs-mips64.cc |
index 55bf6e48c32e4200a63c053f6b12e4ed91e71993..407924578db80393ec028999eb6a653066105e6d 100644 |
--- a/src/mips64/code-stubs-mips64.cc |
+++ b/src/mips64/code-stubs-mips64.cc |
@@ -287,15 +287,12 @@ static void EmitIdenticalObjectComparison(MacroAssembler* masm, Label* slow, |
// Smis. If it's not a heap number, then return equal. |
__ GetObjectType(a0, t0, t0); |
if (cc == less || cc == greater) { |
- Label not_simd; |
// Call runtime on identical JSObjects. |
__ Branch(slow, greater, t0, Operand(FIRST_SPEC_OBJECT_TYPE)); |
// Call runtime on identical symbols since we need to throw a TypeError. |
__ Branch(slow, eq, t0, Operand(SYMBOL_TYPE)); |
// Call runtime on identical SIMD values since we must throw a TypeError. |
- __ Branch(¬_simd, lt, t0, Operand(FIRST_SIMD_VALUE_TYPE)); |
- __ Branch(slow, le, t0, Operand(LAST_SIMD_VALUE_TYPE)); |
- __ bind(¬_simd); |
+ __ Branch(slow, eq, t0, Operand(SIMD128_VALUE_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. |
@@ -307,14 +304,11 @@ static void EmitIdenticalObjectComparison(MacroAssembler* masm, Label* slow, |
__ Branch(&heap_number, eq, t0, Operand(HEAP_NUMBER_TYPE)); |
// Comparing JS objects with <=, >= is complicated. |
if (cc != eq) { |
- Label not_simd; |
__ Branch(slow, greater, t0, Operand(FIRST_SPEC_OBJECT_TYPE)); |
// Call runtime on identical symbols since we need to throw a TypeError. |
__ Branch(slow, eq, t0, Operand(SYMBOL_TYPE)); |
// Call runtime on identical SIMD values since we must throw a TypeError. |
- __ Branch(¬_simd, lt, t0, Operand(FIRST_SIMD_VALUE_TYPE)); |
- __ Branch(slow, le, t0, Operand(LAST_SIMD_VALUE_TYPE)); |
- __ bind(¬_simd); |
+ __ Branch(slow, eq, t0, Operand(SIMD128_VALUE_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 |