| Index: sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart b/sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart
|
| index 553b2d5a8527ea3222067f7bfeecc8ea761a9f37..dc1ac267a2899a05985d991ddc320b6b491d3e65 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart
|
| @@ -229,8 +229,8 @@ class SsaLiveIntervalBuilder extends HBaseVisitor {
|
| var checked = check.checkedInput;
|
| while (checked is HCheck) {
|
| HInstruction next = checked.checkedInput;
|
| + if (generateAtUseSite.contains(next)) break;
|
| checked = next;
|
| - if (!generateAtUseSite.contains(next)) break;
|
| }
|
| return checked;
|
| }
|
|
|