Skip to content

Commit 830ad66

Browse files
committed
Disabled DropNoEffects before the actual change comes to master to see if we can pass all the CI tests.
1 parent f931b2d commit 830ad66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/src/dotty/tools/dotc/transform/localopt/Simplify.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class Simplify extends MiniPhase with IdentityDenotTransformer {
4949
new Devalify ::
5050
new Jumpjump ::
5151
new DropGoodCasts ::
52-
new DropNoEffects(this) ::
52+
// new DropNoEffects(this) ::
5353
new InlineLocalObjects(this) ::
5454
// new Varify :: // varify could stop other transformations from being applied. postponed.
5555
// new BubbleUpNothing ::
@@ -62,7 +62,7 @@ class Simplify extends MiniPhase with IdentityDenotTransformer {
6262
new Devalify ::
6363
new Jumpjump ::
6464
new DropGoodCasts ::
65-
new DropNoEffects(this) ::
65+
// new DropNoEffects(this) ::
6666
new ConstantFold(this) ::
6767
Nil
6868

0 commit comments

Comments
 (0)