| Index: frog/leg/ssa/nodes.dart
|
| diff --git a/frog/leg/ssa/nodes.dart b/frog/leg/ssa/nodes.dart
|
| index 46d41d90c791730693aca423a9bb85f79e8a383a..9ab99085fc11feb029501c3818d6622cc66e13f1 100644
|
| --- a/frog/leg/ssa/nodes.dart
|
| +++ b/frog/leg/ssa/nodes.dart
|
| @@ -722,10 +722,10 @@ class HBlockInformation {
|
| }
|
|
|
| class HLabeledBlockInformation extends HBlockInformation {
|
| - final HBasicBlock start;
|
| - final HBasicBlock end;
|
| + final SubGraph body;
|
| + final HBasicBlock joinBlock;
|
| final List<SourceString> labels;
|
| - HLabeledBlockInformation(this.start, this.end, this.labels);
|
| + HLabeledBlockInformation(this.body, this.joinBlock, this.labels);
|
| }
|
|
|
| class HLoopInformation extends HBlockInformation {
|
|
|