Index: src/compiler/machine-operator.cc |
diff --git a/src/compiler/machine-operator.cc b/src/compiler/machine-operator.cc |
index 96f7dc1a9100a7ab9def22ce3f31b91a5fc619ac..6bd2a3fa76d5a2e76859b689f77fee7aad8281be 100644 |
--- a/src/compiler/machine-operator.cc |
+++ b/src/compiler/machine-operator.cc |
@@ -270,15 +270,15 @@ MachineType AtomicOpRepresentationOf(Operator const* op) { |
V(I32x4MaxS, Operator::kCommutative, 2, 0, 1) \ |
V(I32x4Eq, Operator::kCommutative, 2, 0, 1) \ |
V(I32x4Ne, Operator::kCommutative, 2, 0, 1) \ |
- V(I32x4LtS, Operator::kNoProperties, 2, 0, 1) \ |
- V(I32x4LeS, Operator::kNoProperties, 2, 0, 1) \ |
+ V(I32x4GtS, Operator::kNoProperties, 2, 0, 1) \ |
+ V(I32x4GeS, Operator::kNoProperties, 2, 0, 1) \ |
V(I32x4UConvertF32x4, Operator::kNoProperties, 1, 0, 1) \ |
V(I32x4UConvertI16x8Low, Operator::kNoProperties, 1, 0, 1) \ |
V(I32x4UConvertI16x8High, Operator::kNoProperties, 1, 0, 1) \ |
V(I32x4MinU, Operator::kCommutative, 2, 0, 1) \ |
V(I32x4MaxU, Operator::kCommutative, 2, 0, 1) \ |
- V(I32x4LtU, Operator::kNoProperties, 2, 0, 1) \ |
- V(I32x4LeU, Operator::kNoProperties, 2, 0, 1) \ |
+ V(I32x4GtU, Operator::kNoProperties, 2, 0, 1) \ |
+ V(I32x4GeU, Operator::kNoProperties, 2, 0, 1) \ |
V(I16x8Splat, Operator::kNoProperties, 1, 0, 1) \ |
V(I16x8SConvertI8x16Low, Operator::kNoProperties, 1, 0, 1) \ |
V(I16x8SConvertI8x16High, Operator::kNoProperties, 1, 0, 1) \ |
@@ -294,8 +294,8 @@ MachineType AtomicOpRepresentationOf(Operator const* op) { |
V(I16x8MaxS, Operator::kCommutative, 2, 0, 1) \ |
V(I16x8Eq, Operator::kCommutative, 2, 0, 1) \ |
V(I16x8Ne, Operator::kCommutative, 2, 0, 1) \ |
- V(I16x8LtS, Operator::kNoProperties, 2, 0, 1) \ |
- V(I16x8LeS, Operator::kNoProperties, 2, 0, 1) \ |
+ V(I16x8GtS, Operator::kNoProperties, 2, 0, 1) \ |
+ V(I16x8GeS, Operator::kNoProperties, 2, 0, 1) \ |
V(I16x8UConvertI8x16Low, Operator::kNoProperties, 1, 0, 1) \ |
V(I16x8UConvertI8x16High, Operator::kNoProperties, 1, 0, 1) \ |
V(I16x8UConvertI32x4, Operator::kNoProperties, 2, 0, 1) \ |
@@ -303,8 +303,8 @@ MachineType AtomicOpRepresentationOf(Operator const* op) { |
V(I16x8SubSaturateU, Operator::kNoProperties, 2, 0, 1) \ |
V(I16x8MinU, Operator::kCommutative, 2, 0, 1) \ |
V(I16x8MaxU, Operator::kCommutative, 2, 0, 1) \ |
- V(I16x8LtU, Operator::kNoProperties, 2, 0, 1) \ |
- V(I16x8LeU, Operator::kNoProperties, 2, 0, 1) \ |
+ V(I16x8GtU, Operator::kNoProperties, 2, 0, 1) \ |
+ V(I16x8GeU, Operator::kNoProperties, 2, 0, 1) \ |
V(I8x16Splat, Operator::kNoProperties, 1, 0, 1) \ |
V(I8x16Neg, Operator::kNoProperties, 1, 0, 1) \ |
V(I8x16SConvertI16x8, Operator::kNoProperties, 2, 0, 1) \ |
@@ -317,15 +317,15 @@ MachineType AtomicOpRepresentationOf(Operator const* op) { |
V(I8x16MaxS, Operator::kCommutative, 2, 0, 1) \ |
V(I8x16Eq, Operator::kCommutative, 2, 0, 1) \ |
V(I8x16Ne, Operator::kCommutative, 2, 0, 1) \ |
- V(I8x16LtS, Operator::kNoProperties, 2, 0, 1) \ |
- V(I8x16LeS, Operator::kNoProperties, 2, 0, 1) \ |
+ V(I8x16GtS, Operator::kNoProperties, 2, 0, 1) \ |
+ V(I8x16GeS, Operator::kNoProperties, 2, 0, 1) \ |
V(I8x16UConvertI16x8, Operator::kNoProperties, 2, 0, 1) \ |
V(I8x16AddSaturateU, Operator::kCommutative, 2, 0, 1) \ |
V(I8x16SubSaturateU, Operator::kNoProperties, 2, 0, 1) \ |
V(I8x16MinU, Operator::kCommutative, 2, 0, 1) \ |
V(I8x16MaxU, Operator::kCommutative, 2, 0, 1) \ |
- V(I8x16LtU, Operator::kNoProperties, 2, 0, 1) \ |
- V(I8x16LeU, Operator::kNoProperties, 2, 0, 1) \ |
+ V(I8x16GtU, Operator::kNoProperties, 2, 0, 1) \ |
+ V(I8x16GeU, Operator::kNoProperties, 2, 0, 1) \ |
V(S128Load, Operator::kNoProperties, 2, 0, 1) \ |
V(S128Store, Operator::kNoProperties, 3, 0, 1) \ |
V(S128Zero, Operator::kNoProperties, 0, 0, 1) \ |