Add the dummy implementation for turbofan unsupported port.
authorchunyang.dai <chunyang.dai@intel.com>
Fri, 27 Feb 2015 05:54:13 +0000 (21:54 -0800)
committerCommit bot <commit-bot@chromium.org>
Fri, 27 Feb 2015 05:54:27 +0000 (05:54 +0000)
  This is introduced by acd9c46ca7a0ada723d717f2545fd484c824eaa2 (r26691).

BUG=

Review URL: https://codereview.chromium.org/965673002

Cr-Commit-Position: refs/heads/master@{#26901}

src/compiler/instruction-selector.cc

index ae73df8..8b8f3c1 100644 (file)
@@ -1212,6 +1212,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() {