| Index: sdk/lib/_internal/compiler/implementation/ssa/bailout.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/bailout.dart b/sdk/lib/_internal/compiler/implementation/ssa/bailout.dart
|
| index 78ecae65c5098b5de7f79599f1621398ef826a17..da404e018782d889557f87d9c9354abc19d99cdc 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/bailout.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/bailout.dart
|
| @@ -502,7 +502,7 @@ class SsaBailoutPropagator extends HBaseVisitor {
|
| if (info.initializer != null) {
|
| visitExpression(info.initializer);
|
| }
|
| - blocks.addLast(info.loopHeader);
|
| + blocks.add(info.loopHeader);
|
| if (!info.isDoWhile()) {
|
| visitExpression(info.condition);
|
| }
|
| @@ -552,7 +552,7 @@ class SsaBailoutPropagator extends HBaseVisitor {
|
| */
|
| void visitStatements(HSubGraphBlockInformation info, {bool newFlow}) {
|
| SubGraph graph = info.subGraph;
|
| - if (newFlow) blocks.addLast(graph.start);
|
| + if (newFlow) blocks.add(graph.start);
|
| visitSubGraph(graph);
|
| if (newFlow) blocks.removeLast();
|
| }
|
|
|