| Index: lib/compiler/implementation/ssa/types_propagation.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/ssa/types_propagation.dart (revision 10938)
|
| +++ lib/compiler/implementation/ssa/types_propagation.dart (working copy)
|
| @@ -140,8 +140,7 @@
|
| HTypeConversion converted =
|
| new HTypeConversion.argumentTypeCheck(type, input);
|
| instruction.block.addBefore(instruction, converted);
|
| - instruction.changeUse(input, converted);
|
| - Set<HInstruction> dominatedUsers = input.dominatedUsers(converted);
|
| + Set<HInstruction> dominatedUsers = input.dominatedUsers(instruction);
|
| for (HInstruction user in dominatedUsers) {
|
| user.changeUse(input, converted);
|
| addToWorkList(user);
|
|
|