Index: src/mips/lithium-mips.cc |
diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc |
index c938f534d206176b0cc8fae73c16ce54ff9efbcd..fd3fd3ad4c20f5848ca1ffdf2a25f5002b8ecb57 100644 |
--- a/src/mips/lithium-mips.cc |
+++ b/src/mips/lithium-mips.cc |
@@ -2245,21 +2245,12 @@ LInstruction* LChunkBuilder::DoTransitionElementsKind( |
if (IsSimpleMapChangeTransition(instr->from_kind(), instr->to_kind())) { |
LOperand* new_map_reg = TempRegister(); |
LTransitionElementsKind* result = |
- new(zone()) LTransitionElementsKind(object, new_map_reg, NULL); |
+ new(zone()) LTransitionElementsKind(object, new_map_reg); |
return result; |
- } else if (FLAG_compiled_transitions) { |
- LTransitionElementsKind* result = |
- new(zone()) LTransitionElementsKind(object, NULL, NULL); |
- return AssignPointerMap(result); |
} else { |
- LOperand* object = UseFixed(instr->object(), a0); |
- LOperand* fixed_object_reg = FixedTemp(a2); |
- LOperand* new_map_reg = FixedTemp(a3); |
LTransitionElementsKind* result = |
- new(zone()) LTransitionElementsKind(object, |
- new_map_reg, |
- fixed_object_reg); |
- return MarkAsCall(result, instr); |
+ new(zone()) LTransitionElementsKind(object, NULL); |
+ return AssignPointerMap(result); |
} |
} |