Index: src/compiler/mips64/instruction-selector-mips64.cc |
diff --git a/src/compiler/mips64/instruction-selector-mips64.cc b/src/compiler/mips64/instruction-selector-mips64.cc |
index b4664d036a4008cc7925bc4b0e5ba4a0f0b6f5fd..36da8b80872dd58c96eec9a3239085314de1b6f5 100644 |
--- a/src/compiler/mips64/instruction-selector-mips64.cc |
+++ b/src/compiler/mips64/instruction-selector-mips64.cc |
@@ -2861,20 +2861,20 @@ void InstructionSelector::VisitI32x4Neg(Node* node) { |
VisitRR(this, kMips64I32x4Neg, node); |
} |
-void InstructionSelector::VisitI32x4LtS(Node* node) { |
- VisitRRR(this, kMips64I32x4LtS, node); |
+void InstructionSelector::VisitI32x4GtS(Node* node) { |
+ VisitRRR(this, kMips64I32x4GtS, node); |
} |
-void InstructionSelector::VisitI32x4LeS(Node* node) { |
- VisitRRR(this, kMips64I32x4LeS, node); |
+void InstructionSelector::VisitI32x4GeS(Node* node) { |
+ VisitRRR(this, kMips64I32x4GeS, node); |
} |
-void InstructionSelector::VisitI32x4LtU(Node* node) { |
- VisitRRR(this, kMips64I32x4LtU, node); |
+void InstructionSelector::VisitI32x4GtU(Node* node) { |
+ VisitRRR(this, kMips64I32x4GtU, node); |
} |
-void InstructionSelector::VisitI32x4LeU(Node* node) { |
- VisitRRR(this, kMips64I32x4LeU, node); |
+void InstructionSelector::VisitI32x4GeU(Node* node) { |
+ VisitRRR(this, kMips64I32x4GeU, node); |
} |
void InstructionSelector::VisitI16x8Splat(Node* node) { |
@@ -2941,12 +2941,12 @@ void InstructionSelector::VisitI16x8Ne(Node* node) { |
VisitRRR(this, kMips64I16x8Ne, node); |
} |
-void InstructionSelector::VisitI16x8LtS(Node* node) { |
- VisitRRR(this, kMips64I16x8LtS, node); |
+void InstructionSelector::VisitI16x8GtS(Node* node) { |
+ VisitRRR(this, kMips64I16x8GtS, node); |
} |
-void InstructionSelector::VisitI16x8LeS(Node* node) { |
- VisitRRR(this, kMips64I16x8LeS, node); |
+void InstructionSelector::VisitI16x8GeS(Node* node) { |
+ VisitRRR(this, kMips64I16x8GeS, node); |
} |
void InstructionSelector::VisitI16x8AddSaturateU(Node* node) { |
@@ -2965,12 +2965,12 @@ void InstructionSelector::VisitI16x8MinU(Node* node) { |
VisitRRR(this, kMips64I16x8MinU, node); |
} |
-void InstructionSelector::VisitI16x8LtU(Node* node) { |
- VisitRRR(this, kMips64I16x8LtU, node); |
+void InstructionSelector::VisitI16x8GtU(Node* node) { |
+ VisitRRR(this, kMips64I16x8GtU, node); |
} |
-void InstructionSelector::VisitI16x8LeU(Node* node) { |
- VisitRRR(this, kMips64I16x8LeU, node); |
+void InstructionSelector::VisitI16x8GeU(Node* node) { |
+ VisitRRR(this, kMips64I16x8GeU, node); |
} |
void InstructionSelector::VisitI8x16Splat(Node* node) { |