| Index: pkg/compiler/lib/src/js_backend/codegen/task.dart
|
| diff --git a/pkg/compiler/lib/src/js_backend/codegen/task.dart b/pkg/compiler/lib/src/js_backend/codegen/task.dart
|
| index 6fe5bccb26ef005abd5789db806e694452aa5392..e89c4aee4f063038e50bcb970e9a47ba21df64c1 100644
|
| --- a/pkg/compiler/lib/src/js_backend/codegen/task.dart
|
| +++ b/pkg/compiler/lib/src/js_backend/codegen/task.dart
|
| @@ -226,6 +226,8 @@ class CpsFunctionCompiler implements FunctionCompiler {
|
| applyCpsPass(new ShrinkingReducer(), cpsFunction);
|
| applyCpsPass(new EagerlyLoadStatics(), cpsFunction);
|
| applyCpsPass(new GVN(compiler, typeSystem), cpsFunction);
|
| + applyCpsPass(new DuplicateBranchEliminator(), cpsFunction);
|
| + applyCpsPass(new ShrinkingReducer(), cpsFunction);
|
| applyCpsPass(new UpdateRefinements(typeSystem), cpsFunction);
|
| applyCpsPass(new BoundsChecker(typeSystem, compiler.world), cpsFunction);
|
| applyCpsPass(new LoopInvariantBranchMotion(), cpsFunction);
|
|
|