Index: pkg/compiler/lib/src/ssa/types_propagation.dart |
diff --git a/pkg/compiler/lib/src/ssa/types_propagation.dart b/pkg/compiler/lib/src/ssa/types_propagation.dart |
index adda76e42a949252d5284b201a922d3f7e2125ad..00032c6dcb356d5e154ad3ad7b9fdd98744c053a 100644 |
--- a/pkg/compiler/lib/src/ssa/types_propagation.dart |
+++ b/pkg/compiler/lib/src/ssa/types_propagation.dart |
@@ -178,7 +178,7 @@ class SsaTypePropagator extends HBaseVisitor implements OptimizationPhase { |
} |
TypeMask outputType = checkedType.intersection(inputType, classWorld); |
- if (outputType.isEmpty && !outputType.isNullable) { |
+ if (outputType.isEmpty) { |
// Intersection of double and integer conflicts (is empty), but JS numbers |
// can be both int and double at the same time. For example, the input |
// can be a literal double '8.0' that is marked as an integer (because 'is |