| Index: sdk/lib/_internal/compiler/implementation/ssa/optimize.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/optimize.dart b/sdk/lib/_internal/compiler/implementation/ssa/optimize.dart
|
| index 23843d4657decfda4251d33541c881086f6bfeb9..bea5bd525b5e9c4625196a35da3213a13cdeb562 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/optimize.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/optimize.dart
|
| @@ -895,8 +895,7 @@ class SsaDeadCodeEliminator extends HGraphVisitor implements OptimizationPhase {
|
| HInstruction get zapInstruction {
|
| if (zapInstructionCache == null) {
|
| // A constant with no type does not pollute types at phi nodes.
|
| - Constant constant =
|
| - new DummyReceiverConstant(const TypeMask.nonNullEmpty());
|
| + Constant constant = new DummyConstant(const TypeMask.nonNullEmpty());
|
| zapInstructionCache = analyzer.graph.addConstant(constant, compiler);
|
| }
|
| return zapInstructionCache;
|
|
|