| Index: src/mips64/lithium-mips64.cc | 
| diff --git a/src/mips64/lithium-mips64.cc b/src/mips64/lithium-mips64.cc | 
| index ee32dcef4ebb84c8ae4672759004308ff61d924f..7495b747705ead03af4a292341718ab205cc7b0f 100644 | 
| --- a/src/mips64/lithium-mips64.cc | 
| +++ b/src/mips64/lithium-mips64.cc | 
| @@ -1991,6 +1991,15 @@ LInstruction* LChunkBuilder::DoCheckSmi(HCheckSmi* instr) { | 
| } | 
|  | 
|  | 
| +LInstruction* LChunkBuilder::DoCheckArrayBufferNotNeutered( | 
| +    HCheckArrayBufferNotNeutered* instr) { | 
| +  LOperand* view = UseRegisterAtStart(instr->value()); | 
| +  LCheckArrayBufferNotNeutered* result = | 
| +      new (zone()) LCheckArrayBufferNotNeutered(view); | 
| +  return AssignEnvironment(result); | 
| +} | 
| + | 
| + | 
| LInstruction* LChunkBuilder::DoCheckInstanceType(HCheckInstanceType* instr) { | 
| LOperand* value = UseRegisterAtStart(instr->value()); | 
| LInstruction* result = new(zone()) LCheckInstanceType(value); | 
|  |