Skip to content

Commit eba3214

Browse files
committed
Enable squashed phases by default.
Squash was accidenbtally turned off before. Is now on again.
1 parent 88946d5 commit eba3214

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
@@ -70,7 +70,7 @@ object Phases {
7070
* The list should never contain NoPhase.
7171
* if squashing is enabled, phases in same subgroup will be squashed to single phase.
7272
*/
73-
def usePhases(phasess: List[List[Phase]], squash: Boolean = false) = {
73+
def usePhases(phasess: List[List[Phase]], squash: Boolean = true) = {
7474
phases = (NoPhase :: phasess.flatten ::: new TerminalPhase :: Nil).toArray
7575
nextDenotTransformerId = new Array[Int](phases.length)
7676
denotTransformers = new Array[DenotTransformer](phases.length)

0 commit comments

Comments
 (0)