| Index: lib/compiler/implementation/ssa/nodes.dart
|
| diff --git a/lib/compiler/implementation/ssa/nodes.dart b/lib/compiler/implementation/ssa/nodes.dart
|
| index 19f794894f0250e7588c7940155c9b81fbd85197..795a2157aa1a57488bb51f6a124a09459822507d 100644
|
| --- a/lib/compiler/implementation/ssa/nodes.dart
|
| +++ b/lib/compiler/implementation/ssa/nodes.dart
|
| @@ -445,11 +445,6 @@ class HBasicBlock extends HInstructionList implements Hashable {
|
| bool isLoopHeader() => blockInformation is HLoopInformation;
|
| bool isLabeledBlock() => blockInformation is HLabeledBlockInformation;
|
|
|
| - HBasicBlock get enclosingLoopHeader() {
|
| - if (isLoopHeader()) return this;
|
| - return parentLoopHeader;
|
| - }
|
| -
|
| bool hasGuards() => !guards.isEmpty();
|
|
|
| void open() {
|
|
|