| Index: pkg/compiler/lib/src/ssa/interceptor_simplifier.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/interceptor_simplifier.dart b/pkg/compiler/lib/src/ssa/interceptor_simplifier.dart
|
| index 6a5c82d2ed01dd4300f5259e859fdbec90c5a97f..8cc746748cdbbae1aba411a580985f6a7cdea446 100644
|
| --- a/pkg/compiler/lib/src/ssa/interceptor_simplifier.dart
|
| +++ b/pkg/compiler/lib/src/ssa/interceptor_simplifier.dart
|
| @@ -185,7 +185,8 @@ class SsaSimplifyInterceptors extends HBaseVisitor
|
|
|
| HInstruction findDominator(Iterable<HInstruction> instructions) {
|
| HInstruction result;
|
| - L1: for (HInstruction candidate in instructions) {
|
| + L1:
|
| + for (HInstruction candidate in instructions) {
|
| for (HInstruction current in instructions) {
|
| if (current != candidate && !candidate.dominates(current)) continue L1;
|
| }
|
|
|