| Index: src/mips/lithium-mips.cc
 | 
| diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc
 | 
| index 733866572fb97c585e098747b38a2e522fe5151a..550610902f53bcbc9e838ce403f021b590993a18 100644
 | 
| --- a/src/mips/lithium-mips.cc
 | 
| +++ b/src/mips/lithium-mips.cc
 | 
| @@ -2277,10 +2277,7 @@ LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) {
 | 
|         !IsDoubleOrFloatElementsKind(instr->elements_kind())) ||
 | 
|        (instr->value()->representation().IsDouble() &&
 | 
|         IsDoubleOrFloatElementsKind(instr->elements_kind())));
 | 
| -  DCHECK((instr->is_fixed_typed_array() &&
 | 
| -          instr->elements()->representation().IsTagged()) ||
 | 
| -         (instr->is_external() &&
 | 
| -          instr->elements()->representation().IsExternal()));
 | 
| +  DCHECK(instr->elements()->representation().IsExternal());
 | 
|    LOperand* val = UseRegister(instr->value());
 | 
|    LOperand* key = UseRegisterOrConstantAtStart(instr->key());
 | 
|    LOperand* backing_store = UseRegister(instr->elements());
 | 
| 
 |