| Index: sdk/lib/_internal/compiler/implementation/ssa/bailout.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/bailout.dart b/sdk/lib/_internal/compiler/implementation/ssa/bailout.dart
|
| index a001ad58ce0099964c2876cb8685c745ae2c725e..75bbdda219b12cef66182b88c140b825d731fdc9 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/bailout.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/bailout.dart
|
| @@ -112,8 +112,8 @@ class SsaTypeGuardInserter extends HGraphVisitor implements OptimizationPhase {
|
| if (source != null) {
|
| DartType sourceType = source.computeType(compiler);
|
| DartType speculatedType = speculativeType.computeType(compiler);
|
| - if (speculatedType != null
|
| - && !compiler.types.isAssignable(speculatedType, sourceType)) {
|
| + if (speculatedType != null &&
|
| + !compiler.types.isAssignable(speculatedType, sourceType)) {
|
| return false;
|
| }
|
| }
|
|
|