| Index: src/ia32/lithium-codegen-ia32.cc
|
| diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc
|
| index 5d1f46d065634bc7381850bddca5bf9c0362a740..7b0c63077a77e50ae0c74ab5162d7b3630192000 100644
|
| --- a/src/ia32/lithium-codegen-ia32.cc
|
| +++ b/src/ia32/lithium-codegen-ia32.cc
|
| @@ -111,10 +111,6 @@ void LCodeGen::FinishCode(Handle<Code> code) {
|
| }
|
| info()->CommitDependentMaps(code);
|
|
|
| - for (int i = 0 ; i < transition_maps_.length(); i++) {
|
| - transition_maps_.at(i)->AddDependentCode(
|
| - DependentCode::kTransitionGroup, code);
|
| - }
|
| if (graph()->depends_on_empty_array_proto_elements()) {
|
| isolate()->initial_object_prototype()->map()->AddDependentCode(
|
| DependentCode::kElementsCantBeAddedGroup, code);
|
| @@ -4308,9 +4304,6 @@ void LCodeGen::DoStoreNamedField(LStoreNamedField* instr) {
|
| }
|
|
|
| if (!transition.is_null()) {
|
| - if (transition->CanBeDeprecated()) {
|
| - transition_maps_.Add(transition, info()->zone());
|
| - }
|
| if (!instr->hydrogen()->NeedsWriteBarrierForMap()) {
|
| __ mov(FieldOperand(object, HeapObject::kMapOffset), transition);
|
| } else {
|
|
|