Skip to content

Commit 47913ba

Browse files
cdai2Commit bot
authored andcommitted
Add the dummy implementation for turbofan unsupported port.
This is introduced by acd9c46 (r26691). BUG= Review URL: https://codereview.chromium.org/965673002 Cr-Commit-Position: refs/heads/master@{#26901}
1 parent 27a3879 commit 47913ba

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/compiler/instruction-selector.cc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1212,6 +1212,14 @@ void InstructionSelector::VisitBranch(Node* branch, BasicBlock* tbranch,
12121212
}
12131213

12141214

1215+
void InstructionSelector::VisitSwitch(Node* node, BasicBlock* default_branch,
1216+
BasicBlock** case_branches,
1217+
int32_t* case_values, size_t case_count,
1218+
int32_t min_value, int32_t max_value) {
1219+
UNIMPLEMENTED();
1220+
}
1221+
1222+
12151223
// static
12161224
MachineOperatorBuilder::Flags
12171225
InstructionSelector::SupportedMachineOperatorFlags() {

0 commit comments

Comments
 (0)