File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
compiler/fir/modularized-tests/tests/org/jetbrains/kotlin/fir Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -332,10 +332,9 @@ abstract class AbstractFullPipelineModularizedTest : AbstractModularizedTest() {
332
332
val components = buildMap {
333
333
put(" Init" , unitStats.initStats?.millis ? : 0 )
334
334
put(" Analysis" , unitStats.analysisStats?.millis ? : 0 )
335
-
336
- unitStats.translationToIrStats?.millis?.let { put(" Translation to IR" , it) }
337
- unitStats.irLoweringStats?.millis?.let { put(" IR Lowering" , it) }
338
- unitStats.backendStats?.millis?.let { put(" Backend" , it) }
335
+ unitStats.translationToIrStats?.millis?.let { put(" Translation" , it) }
336
+ unitStats.irLoweringStats?.millis?.let { put(" Lowering" , it) }
337
+ unitStats.backendStats?.millis?.let { put(" Generation" , it) }
339
338
}
340
339
341
340
return CumulativeTime (
You can’t perform that action at this time.
0 commit comments