@@ -133,30 +133,30 @@ class Simplify extends MiniPhaseTransform with IdentityDenotTransformer {
133
133
type Optimization = (Context ) => (String , ErasureCompatibility , Visitor , Transformer )
134
134
135
135
private lazy val _optimizations : Seq [Optimization ] =
136
- inlineCaseIntrinsics ::
137
- removeUnnecessaryNullChecks :: // Doesn't seams to work AfterErasure
138
- inlineOptions ::
136
+ // inlineCaseIntrinsics ::
137
+ // removeUnnecessaryNullChecks :: // Doesn't seams to work AfterErasure
138
+ // inlineOptions ::
139
139
// Tests that fail when enabled AfterErasure, to be investigated?
140
140
// ../tests/run/Course-2002-04.scala failed
141
141
// ../tests/run/t2005.scala failed
142
142
// ../tests/run/optimizer-array-load.scala failed
143
143
// ../tests/pos/virtpatmat_exist1.scala failed
144
144
// ../tests/pos/t1133.scala failed
145
- inlineLabelsCalledOnce ::
146
- valify ::
147
- devalify ::
148
- jumpjump ::
149
- dropGoodCasts ::
150
- dropNoEffects ::
151
- // inlineLocalObjects :: // followCases needs to be fixed, see ./tests/pos/rbtree.scala
152
- // varify :: // varify could stop other transformations from being applied. postponed.
153
- // bubbleUpNothing ::
154
- // Still need to import the tailRec thing
155
- // t2429.scala
156
- // constraining-lub.scala
157
- // t8933c.scala
158
- // t348plus.scala
159
- constantFold ::
145
+ // inlineLabelsCalledOnce ::
146
+ // valify ::
147
+ // devalify ::
148
+ // jumpjump ::
149
+ // dropGoodCasts ::
150
+ // dropNoEffects ::
151
+ // // inlineLocalObjects :: // followCases needs to be fixed, see ./tests/pos/rbtree.scala
152
+ // // varify :: // varify could stop other transformations from being applied. postponed.
153
+ // // bubbleUpNothing ::
154
+ // // Still need to import the tailRec thing
155
+ // // t2429.scala
156
+ // // constraining-lub.scala
157
+ // // t8933c.scala
158
+ // // t348plus.scala
159
+ // constantFold ::
160
160
Nil
161
161
162
162
override def transformDefDef (tree : DefDef )(implicit ctx : Context , info : TransformerInfo ): Tree = {
0 commit comments