Reviewers: Benedikt Meurer,

Message:
PTAL.

thanks

Description:
Add the dummy implementation for turbofan unsupported port.

  This is introduced by acd9c46ca7a0ada723d717f2545fd484c824eaa2 (r26691).


BUG=

Please review this at https://codereview.chromium.org/965673002/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+8, -0 lines):
  M src/compiler/instruction-selector.cc


Index: src/compiler/instruction-selector.cc
diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc index ae73df853bce85b08a54207265cfb5d22cd74e9d..8b8f3c134e9f3c6b8216b4ade40595179ae71727 100644
--- a/src/compiler/instruction-selector.cc
+++ b/src/compiler/instruction-selector.cc
@@ -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() {


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to