| Index: src/compiler/instruction-selector.cc
|
| diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc
|
| index c170a01d4a2bebbfe51e246254c2d86600c96ce2..41b957a691bbd4d47f55f9db73b90e51ffd466a4 100644
|
| --- a/src/compiler/instruction-selector.cc
|
| +++ b/src/compiler/instruction-selector.cc
|
| @@ -1214,6 +1214,14 @@ void InstructionSelector::VisitBranch(Node* branch, BasicBlock* tbranch,
|
| }
|
|
|
|
|
| +void InstructionSelector::VisitSwitch(Node* node, BasicBlock* default_branch,
|
| + BasicBlock** case_branches,
|
| + int32_t* case_values, size_t case_count,
|
| + int32_t min_value, int32_t max_value) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| // static
|
| MachineOperatorBuilder::Flags
|
| InstructionSelector::SupportedMachineOperatorFlags() {
|
|
|