| Index: src/ia32/lithium-ia32.cc | 
| diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc | 
| index e07c1e8b3eb9645d7d8423e14d4dd5691fa756b9..1235e567be363c4fdc4c9f946c57dc359923f46f 100644 | 
| --- a/src/ia32/lithium-ia32.cc | 
| +++ b/src/ia32/lithium-ia32.cc | 
| @@ -2239,7 +2239,7 @@ LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) { | 
| : UseRegisterOrConstantAtStart(instr->key()); | 
| LInstruction* result = NULL; | 
|  | 
| -  if (!instr->is_typed_elements()) { | 
| +  if (!instr->is_fixed_typed_array()) { | 
| LOperand* obj = UseRegisterAtStart(instr->elements()); | 
| result = DefineAsRegister(new(zone()) LLoadKeyed(obj, key)); | 
| } else { | 
| @@ -2253,10 +2253,9 @@ LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) { | 
| } | 
|  | 
| bool needs_environment; | 
| -  if (instr->is_external() || instr->is_fixed_typed_array()) { | 
| +  if (instr->is_fixed_typed_array()) { | 
| // see LCodeGen::DoLoadKeyedExternalArray | 
| -    needs_environment = (elements_kind == EXTERNAL_UINT32_ELEMENTS || | 
| -                         elements_kind == UINT32_ELEMENTS) && | 
| +    needs_environment = elements_kind == UINT32_ELEMENTS && | 
| !instr->CheckFlag(HInstruction::kUint32); | 
| } else { | 
| // see LCodeGen::DoLoadKeyedFixedDoubleArray and | 
| @@ -2293,9 +2292,6 @@ LOperand* LChunkBuilder::GetStoreKeyedValueOperand(HStoreKeyed* instr) { | 
|  | 
| // Determine if we need a byte register in this case for the value. | 
| bool val_is_fixed_register = | 
| -      elements_kind == EXTERNAL_INT8_ELEMENTS || | 
| -      elements_kind == EXTERNAL_UINT8_ELEMENTS || | 
| -      elements_kind == EXTERNAL_UINT8_CLAMPED_ELEMENTS || | 
| elements_kind == UINT8_ELEMENTS || | 
| elements_kind == INT8_ELEMENTS || | 
| elements_kind == UINT8_CLAMPED_ELEMENTS; | 
| @@ -2308,7 +2304,7 @@ LOperand* LChunkBuilder::GetStoreKeyedValueOperand(HStoreKeyed* instr) { | 
|  | 
|  | 
| LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) { | 
| -  if (!instr->is_typed_elements()) { | 
| +  if (!instr->is_fixed_typed_array()) { | 
| DCHECK(instr->elements()->representation().IsTagged()); | 
| DCHECK(instr->key()->representation().IsInteger32() || | 
| instr->key()->representation().IsSmi()); | 
|  |