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 77b6f54968e185ed9e3aae117216182ecbd12585..80045b5bdb530e2db7ad0b086d6ac73b2e606cfa 100644 |
--- a/src/compiler/ppc/instruction-selector-ppc.cc |
+++ b/src/compiler/ppc/instruction-selector-ppc.cc |
@@ -949,7 +949,11 @@ void InstructionSelector::VisitTryTruncateFloat64ToInt64(Node* node) { |
} |
-void InstructionSelector::VisitTruncateFloat32ToUint64(Node* node) { |
+void InstructionSelector::VisitTryTruncateFloat32ToUint64(Node* node) { |
+ if (NodeProperties::FindProjection(node, 1)) { |
+ // TODO(ppc): implement the second return value. |
+ UNIMPLEMENTED(); |
+ } |
VisitRR(this, kPPC_DoubleToUint64, node); |
} |