| Index: src/compiler/mips64/code-generator-mips64.cc
 | 
| diff --git a/src/compiler/mips64/code-generator-mips64.cc b/src/compiler/mips64/code-generator-mips64.cc
 | 
| index 19c0a21f651e000f2910ce0c3180e10cebfbf764..2963aad1745fdf38c003b7162799e4656f78aca5 100644
 | 
| --- a/src/compiler/mips64/code-generator-mips64.cc
 | 
| +++ b/src/compiler/mips64/code-generator-mips64.cc
 | 
| @@ -2051,6 +2051,10 @@ void CodeGenerator::AssembleArchJump(RpoNumber target) {
 | 
|    if (!IsNextInAssemblyOrder(target)) __ Branch(GetLabel(target));
 | 
|  }
 | 
|  
 | 
| +void CodeGenerator::AssembleArchTrap(Instruction* instr,
 | 
| +                                     FlagsCondition condition) {
 | 
| +  UNREACHABLE();
 | 
| +}
 | 
|  
 | 
|  // Assembles boolean materializations after an instruction.
 | 
|  void CodeGenerator::AssembleArchBoolean(Instruction* instr,
 | 
| 
 |