From 9288ad88bb9c5202daba0b8fbb1d230afa6b36f1 Mon Sep 17 00:00:00 2001 From: Junliang Yan Date: Tue, 6 Feb 2018 16:09:51 -0500 Subject: [PATCH] PPC/s390: define VisitF32x4Neg and VisitF32x4Abs Change-Id: Ib7f5d752b772f15386d9b1f50749b8c0381e2354 Reviewed-on: https://chromium-review.googlesource.com/905338 Reviewed-by: Joran Siu Commit-Queue: Junliang Yan Cr-Commit-Position: refs/heads/master@{#51136} --- src/compiler/ppc/instruction-selector-ppc.cc | 4 ++++ src/compiler/s390/instruction-selector-s390.cc | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/compiler/ppc/instruction-selector-ppc.cc b/src/compiler/ppc/instruction-selector-ppc.cc index c943428c08..8bb712776e 100644 --- a/src/compiler/ppc/instruction-selector-ppc.cc +++ b/src/compiler/ppc/instruction-selector-ppc.cc @@ -2285,6 +2285,10 @@ void InstructionSelector::VisitF32x4Max(Node* node) { UNIMPLEMENTED(); } void InstructionSelector::VisitS128Select(Node* node) { UNIMPLEMENTED(); } +void InstructionSelector::VisitF32x4Neg(Node* node) { UNIMPLEMENTED(); } + +void InstructionSelector::VisitF32x4Abs(Node* node) { UNIMPLEMENTED(); } + // static MachineOperatorBuilder::Flags InstructionSelector::SupportedMachineOperatorFlags() { diff --git a/src/compiler/s390/instruction-selector-s390.cc b/src/compiler/s390/instruction-selector-s390.cc index 2a976c5f5f..d20b9637c7 100644 --- a/src/compiler/s390/instruction-selector-s390.cc +++ b/src/compiler/s390/instruction-selector-s390.cc @@ -2604,6 +2604,10 @@ void InstructionSelector::VisitF32x4Max(Node* node) { UNIMPLEMENTED(); } void InstructionSelector::VisitS128Select(Node* node) { UNIMPLEMENTED(); } +void InstructionSelector::VisitF32x4Neg(Node* node) { UNIMPLEMENTED(); } + +void InstructionSelector::VisitF32x4Abs(Node* node) { UNIMPLEMENTED(); } + // static MachineOperatorBuilder::Flags InstructionSelector::SupportedMachineOperatorFlags() {