diff --git a/src/compiler/backend/ppc/instruction-selector-ppc.cc b/src/compiler/backend/ppc/instruction-selector-ppc.cc index 26b29a2a4a92..d41d36a321f3 100644 --- a/src/compiler/backend/ppc/instruction-selector-ppc.cc +++ b/src/compiler/backend/ppc/instruction-selector-ppc.cc @@ -2411,6 +2411,22 @@ void InstructionSelector::VisitI16x8BitMask(Node* node) { UNIMPLEMENTED(); } void InstructionSelector::VisitI32x4BitMask(Node* node) { UNIMPLEMENTED(); } +void InstructionSelector::VisitF64x2Ceil(Node* node) { UNIMPLEMENTED(); } + +void InstructionSelector::VisitF64x2Floor(Node* node) { UNIMPLEMENTED(); } + +void InstructionSelector::VisitF64x2Trunc(Node* node) { UNIMPLEMENTED(); } + +void InstructionSelector::VisitF64x2NearestInt(Node* node) { UNIMPLEMENTED(); } + +void InstructionSelector::VisitF32x4Ceil(Node* node) { UNIMPLEMENTED(); } + +void InstructionSelector::VisitF32x4Floor(Node* node) { UNIMPLEMENTED(); } + +void InstructionSelector::VisitF32x4Trunc(Node* node) { UNIMPLEMENTED(); } + +void InstructionSelector::VisitF32x4NearestInt(Node* node) { UNIMPLEMENTED(); } + void InstructionSelector::EmitPrepareResults( ZoneVector* results, const CallDescriptor* call_descriptor, Node* node) {