Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index 642cb272cf5fa1e2a8281ead6885ba7754fe07ad..9c6efed3d2f57ea37a8a1ed37aaeb5be97c8918c 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -2229,19 +2229,10 @@ LInstruction* LChunkBuilder::DoTransitionElementsKind( |
LTransitionElementsKind* result = |
new(zone()) LTransitionElementsKind(object, new_map_reg, temp_reg); |
return result; |
- } else if (FLAG_compiled_transitions) { |
+ } else { |
LTransitionElementsKind* result = |
new(zone()) LTransitionElementsKind(object, NULL, NULL); |
return AssignPointerMap(result); |
- } else { |
- LOperand* object = UseFixed(instr->object(), rax); |
- LOperand* fixed_object_reg = FixedTemp(rdx); |
- LOperand* new_map_reg = FixedTemp(rbx); |
- LTransitionElementsKind* result = |
- new(zone()) LTransitionElementsKind(object, |
- new_map_reg, |
- fixed_object_reg); |
- return MarkAsCall(result, instr); |
} |
} |