From 07c6814d0f2befffc936b804cf00202c510f37af Mon Sep 17 00:00:00 2001 From: "chunyang.dai" Date: Mon, 9 Feb 2015 10:43:09 -0800 Subject: [PATCH] Add dummy implementation for turbofan unsupported platform. This function is defined in feb2890711e8072a9550abb89621929816fc9699. (https://codereview.chromium.org/892513003). original commit message: [turbofan] Initial support for Switch. Adds Switch and Case operators to TurboFan and handles them appropriately in instruction selection and code generation. BUG= Review URL: https://codereview.chromium.org/902943005 Cr-Commit-Position: refs/heads/master@{#26533} --- src/compiler/code-generator.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/compiler/code-generator.cc b/src/compiler/code-generator.cc index 67dd1ec..95b311d 100644 --- a/src/compiler/code-generator.cc +++ b/src/compiler/code-generator.cc @@ -611,6 +611,11 @@ void CodeGenerator::AssembleSwap(InstructionOperand* source, void CodeGenerator::AddNopForSmiCodeInlining() { UNIMPLEMENTED(); } + +void CodeGenerator::AssembleJumpTable(Label** targets, size_t target_count) { + UNIMPLEMENTED(); +} + #endif // !V8_TURBOFAN_BACKEND -- 2.7.4