| Index: src/compiler/code-generator.cc
 | 
| diff --git a/src/compiler/code-generator.cc b/src/compiler/code-generator.cc
 | 
| index 69eace40b103ef3103282f4b5042201e7e28b746..94f0d901d15df7d286f9aaba30db24d2578a337d 100644
 | 
| --- a/src/compiler/code-generator.cc
 | 
| +++ b/src/compiler/code-generator.cc
 | 
| @@ -6,6 +6,7 @@
 | 
|  
 | 
|  #include "src/compiler/code-generator-impl.h"
 | 
|  #include "src/compiler/linkage.h"
 | 
| +#include "src/compiler/pipeline.h"
 | 
|  
 | 
|  namespace v8 {
 | 
|  namespace internal {
 | 
| @@ -285,6 +286,57 @@ void CodeGenerator::BuildTranslation(Instruction* instr,
 | 
|        new (zone()) DeoptimizationState(translation.index());
 | 
|  }
 | 
|  
 | 
| +
 | 
| +#if !V8_TURBOFAN_TARGET
 | 
| +void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
 | 
| +  UNIMPLEMENTED();
 | 
| +}
 | 
| +
 | 
| +
 | 
| +void CodeGenerator::AssembleArchBranch(Instruction* instr,
 | 
| +                                       FlagsCondition condition) {
 | 
| +  UNIMPLEMENTED();
 | 
| +}
 | 
| +
 | 
| +
 | 
| +void CodeGenerator::AssembleArchBoolean(Instruction* instr,
 | 
| +                                        FlagsCondition condition) {
 | 
| +  UNIMPLEMENTED();
 | 
| +}
 | 
| +
 | 
| +
 | 
| +void CodeGenerator::AssemblePrologue() { UNIMPLEMENTED(); }
 | 
| +
 | 
| +
 | 
| +void CodeGenerator::AssembleReturn() { UNIMPLEMENTED(); }
 | 
| +
 | 
| +
 | 
| +void CodeGenerator::AssembleMove(InstructionOperand* source,
 | 
| +                                 InstructionOperand* destination) {
 | 
| +  UNIMPLEMENTED();
 | 
| +}
 | 
| +
 | 
| +
 | 
| +void CodeGenerator::AssembleSwap(InstructionOperand* source,
 | 
| +                                 InstructionOperand* destination) {
 | 
| +  UNIMPLEMENTED();
 | 
| +}
 | 
| +
 | 
| +
 | 
| +void CodeGenerator::AddNopForSmiCodeInlining() { UNIMPLEMENTED(); }
 | 
| +
 | 
| +
 | 
| +#ifdef DEBUG
 | 
| +bool CodeGenerator::IsNopForSmiCodeInlining(Handle<Code> code, int start_pc,
 | 
| +                                            int end_pc) {
 | 
| +  UNIMPLEMENTED();
 | 
| +  return false;
 | 
| +}
 | 
| +#endif
 | 
| +
 | 
| +#endif
 | 
| +
 | 
| +
 | 
|  }  // namespace compiler
 | 
|  }  // namespace internal
 | 
|  }  // namespace v8
 | 
| 
 |