| Index: lib/compiler/implementation/ssa/builder.dart
|
| diff --git a/lib/compiler/implementation/ssa/builder.dart b/lib/compiler/implementation/ssa/builder.dart
|
| index ad6ece14120e6e5ebb869afaf763d286260be500..7ffe061bbb142bedb42f73a5e7000d18fcdfc9d5 100644
|
| --- a/lib/compiler/implementation/ssa/builder.dart
|
| +++ b/lib/compiler/implementation/ssa/builder.dart
|
| @@ -1394,7 +1394,8 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
|
| wrapStatementGraph(bodyGraph),
|
| wrapExpressionGraph(updateGraph),
|
| conditionBlock.loopInformation.target,
|
| - conditionBlock.loopInformation.labels);
|
| + conditionBlock.loopInformation.labels,
|
| + loop);
|
|
|
| startBlock.setBlockFlow(info, current);
|
| loopInfo.loopBlockInformation = info;
|
| @@ -1521,7 +1522,8 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
|
| wrapStatementGraph(bodyGraph),
|
| null,
|
| loopEntryBlock.loopInformation.target,
|
| - loopEntryBlock.loopInformation.labels);
|
| + loopEntryBlock.loopInformation.labels,
|
| + node);
|
| loopEntryBlock.setBlockFlow(loopBlockInfo, current);
|
| loopInfo.loopBlockInformation = loopBlockInfo;
|
| }
|
|
|