Index: src/compiler/ppc/instruction-selector-ppc.cc |
diff --git a/src/compiler/ppc/instruction-selector-ppc.cc b/src/compiler/ppc/instruction-selector-ppc.cc |
index ec9e43c0cacf659c920e1d534bfed819ea65b79b..e9e6a758ec35744959557ef42ac4f6e02c47356c 100644 |
--- a/src/compiler/ppc/instruction-selector-ppc.cc |
+++ b/src/compiler/ppc/instruction-selector-ppc.cc |
@@ -1386,6 +1386,12 @@ void InstructionSelector::VisitInt64LessThanOrEqual(Node* node) { |
} |
+void InstructionSelector::VisitUint64LessThan(Node* node) { |
+ FlagsContinuation cont(kUnsignedLessThan, node); |
+ VisitWord64Compare(this, node, &cont); |
+} |
+ |
+ |
void InstructionSelector::VisitUint64LessThanOrEqual(Node* node) { |
FlagsContinuation cont(kUnsignedLessThanOrEqual, node); |
VisitWord64Compare(this, node, &cont); |