| Index: pkg/compiler/lib/src/ssa/nodes.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/nodes.dart b/pkg/compiler/lib/src/ssa/nodes.dart
|
| index 929cb7751ad05f1bbb47dc5720e1a3a9339d8eee..6ed6aefd82b331c399289af6204eec97906fcbe9 100644
|
| --- a/pkg/compiler/lib/src/ssa/nodes.dart
|
| +++ b/pkg/compiler/lib/src/ssa/nodes.dart
|
| @@ -1262,9 +1262,8 @@ abstract class HInstruction implements Spannable {
|
| HBasicBlock otherBlock = other.block;
|
| for (int i = 0, length = usedBy.length; i < length; i++) {
|
| HInstruction current = usedBy[i];
|
| - HBasicBlock currentBlock = current.block;
|
| - if (otherBlock.dominates(currentBlock)) {
|
| - if (identical(currentBlock, otherBlock)) usersInCurrentBlock++;
|
| + if (otherBlock.dominates(current.block)) {
|
| + if (identical(current.block, otherBlock)) usersInCurrentBlock++;
|
| users.add(current);
|
| }
|
| }
|
|
|