Add dummy implementation for turbofan unsupported platform.
authorchunyang.dai <chunyang.dai@intel.com>
Mon, 9 Feb 2015 18:43:09 +0000 (10:43 -0800)
committerCommit bot <commit-bot@chromium.org>
Mon, 9 Feb 2015 18:43:21 +0000 (18:43 +0000)
   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

index 67dd1ec..95b311d 100644 (file)
@@ -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