| Index: lib/compiler/implementation/ssa/bailout.dart
|
| diff --git a/lib/compiler/implementation/ssa/bailout.dart b/lib/compiler/implementation/ssa/bailout.dart
|
| index a1e537731b12aa6676d118be2373bbbcca89ca9d..789b98e018d4af9c7edf94dbd6230637b90bf535 100644
|
| --- a/lib/compiler/implementation/ssa/bailout.dart
|
| +++ b/lib/compiler/implementation/ssa/bailout.dart
|
| @@ -117,8 +117,8 @@ class SsaTypeGuardInserter extends HGraphVisitor implements OptimizationPhase {
|
| // annotation that disagrees with the speculated type.
|
| Element source = instruction.sourceElement;
|
| if (source !== null) {
|
| - Type sourceType = source.computeType(compiler);
|
| - Type speculatedType = speculativeType.computeType(compiler);
|
| + DartType sourceType = source.computeType(compiler);
|
| + DartType speculatedType = speculativeType.computeType(compiler);
|
| if (speculatedType !== null
|
| && !compiler.types.isAssignable(speculatedType, sourceType)) {
|
| return false;
|
|
|