Reviewers: dstence, michael_dawson, titzer,

Description:
PPC: Fix "[turbofan] Add Uint64LessThanOrEqual to 64-bit TurboFan backends."

[email protected], [email protected], [email protected]
BUG=

Please review this at https://codereview.chromium.org/1218073008/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+6, -0 lines):
  M src/compiler/ppc/instruction-selector-ppc.cc


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);


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to