| Index: lib/compiler/implementation/ssa/bailout.dart
|
| diff --git a/lib/compiler/implementation/ssa/bailout.dart b/lib/compiler/implementation/ssa/bailout.dart
|
| index ba2423c5680efd5bd7ce4a045aaefb28272d35be..6cc69c59f8939a44d60830a62f54c98dec369b69 100644
|
| --- a/lib/compiler/implementation/ssa/bailout.dart
|
| +++ b/lib/compiler/implementation/ssa/bailout.dart
|
| @@ -454,10 +454,8 @@ class SsaBailoutPropagator extends HBaseVisitor {
|
| HIfBlockInformation info = instruction.blockInformation.body;
|
| visitStatements(info.thenGraph);
|
| preVisitedBlocks++;
|
| - if (instruction.hasElse) {
|
| - visitStatements(info.elseGraph);
|
| - preVisitedBlocks++;
|
| - }
|
| + visitStatements(info.elseGraph);
|
| + preVisitedBlocks++;
|
|
|
| HBasicBlock joinBlock = instruction.joinBlock;
|
| if (joinBlock !== null
|
|
|