| Index: src/hydrogen-escape-analysis.cc
|
| diff --git a/src/hydrogen-escape-analysis.cc b/src/hydrogen-escape-analysis.cc
|
| index 102301992333e1c9a994d0d7b051577869ac89fa..c4a19324655b73cd147e299b1784ac88b3a0280f 100644
|
| --- a/src/hydrogen-escape-analysis.cc
|
| +++ b/src/hydrogen-escape-analysis.cc
|
| @@ -211,16 +211,12 @@ void HEscapeAnalysisPhase::AnalyzeDataFlow(HInstruction* allocate) {
|
| ASSERT(store->access().IsInobject());
|
| state = NewStateCopy(store->previous(), state);
|
| state->SetOperandAt(index, store->value());
|
| - if (store->has_transition()) {
|
| - state->SetOperandAt(0, store->transition());
|
| - }
|
| if (store->HasObservableSideEffects()) {
|
| state->ReuseSideEffectsFromStore(store);
|
| }
|
| store->DeleteAndReplaceWith(store->ActualValue());
|
| if (FLAG_trace_escape_analysis) {
|
| - PrintF("Replacing store #%d%s\n", instr->id(),
|
| - store->has_transition() ? " (with transition)" : "");
|
| + PrintF("Replacing store #%d\n", instr->id());
|
| }
|
| break;
|
| }
|
|
|