Commit 9c5940de authored by mtrofin's avatar mtrofin Committed by Commit bot

[turbofan] PropagateMarks until we have no more change.

In the frame elider, we were propagating marks if both up and down
propagations were causing a change. We should do it until neither
changes.

BUG=

Review URL: https://codereview.chromium.org/1818503002

Cr-Commit-Position: refs/heads/master@{#35013}
parent 41450ffd
......@@ -33,7 +33,7 @@ void FrameElider::MarkBlocks() {
void FrameElider::PropagateMarks() {
while (PropagateInOrder() && PropagateReversed()) {
while (PropagateInOrder() || PropagateReversed()) {
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment