Index: src/compiler/js-typed-lowering.cc |
diff --git a/src/compiler/js-typed-lowering.cc b/src/compiler/js-typed-lowering.cc |
index 8920f4f16538472bc598f9ff98cf713a8b58eb1b..23f37c3055ed7ea11162417f95987fe0e4a7430c 100644 |
--- a/src/compiler/js-typed-lowering.cc |
+++ b/src/compiler/js-typed-lowering.cc |
@@ -1000,10 +1000,10 @@ |
return Replace(replacement); |
} |
} |
- if (r.OneInputCannotBe(Type::NumberOrString())) { |
+ if (r.OneInputCannotBe(Type::NumberOrSimdOrString())) { |
// For values with canonical representation (i.e. neither String, nor |
- // Number) an empty type intersection means the values cannot be strictly |
- // equal. |
+ // Simd128Value nor Number) an empty type intersection means the values |
+ // cannot be strictly equal. |
if (!r.left_type()->Maybe(r.right_type())) { |
Node* replacement = jsgraph()->BooleanConstant(invert); |
ReplaceWithValue(node, replacement); |