| Index: src/mips/lithium-mips.cc
|
| diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc
|
| index 1eb3ab7a0ed5bf671845c947e0391719670b921b..5e7746fea3b113da0f15015a33871cef2fdf8d03 100644
|
| --- a/src/mips/lithium-mips.cc
|
| +++ b/src/mips/lithium-mips.cc
|
| @@ -2023,8 +2023,8 @@ LInstruction* LChunkBuilder::DoStoreKeyedGeneric(HStoreKeyedGeneric* instr) {
|
|
|
| LInstruction* LChunkBuilder::DoTransitionElementsKind(
|
| HTransitionElementsKind* instr) {
|
| - if (instr->original_map()->elements_kind() == FAST_SMI_ONLY_ELEMENTS &&
|
| - instr->transitioned_map()->elements_kind() == FAST_ELEMENTS) {
|
| + if (IsFastSmiOnlyObject(instr->original_map()->elements_kind()) &&
|
| + IsFastObjectElements(instr->transitioned_map()->elements_kind())) {
|
| LOperand* object = UseRegister(instr->object());
|
| LOperand* new_map_reg = TempRegister();
|
| LTransitionElementsKind* result =
|
|
|