Skip to content

Commit 35de6f1

Browse files
oderskyDarkDimius
authored andcommitted
Enable squashed phases by default.
Squash was accidenbtally turned off before. Is now on again.
1 parent 37cf9ef commit 35de6f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dotty/tools/dotc/core/Phases.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ object Phases {
7272
* The list should never contain NoPhase.
7373
* if squashing is enabled, phases in same subgroup will be squashed to single phase.
7474
*/
75-
def usePhases(phasess: List[List[Phase]], squash: Boolean = false) = {
75+
def usePhases(phasess: List[List[Phase]], squash: Boolean = true) = {
7676
phases = (NoPhase :: phasess.flatten ::: new TerminalPhase :: Nil).toArray
7777
nextDenotTransformerId = new Array[Int](phases.length)
7878
denotTransformers = new Array[DenotTransformer](phases.length)

0 commit comments

Comments
 (0)