Skip to content

Commit 659e664

Browse files
ivandev0Space Team
authored and
Space Team
committed
Reorganize GradleBuildTime entries to match actual structure used in compiler
#KT-67473 Fixed
1 parent 3973a4b commit 659e664

File tree

1 file changed

+3
-3
lines changed
  • compiler/build-tools/kotlin-build-statistics/src/org/jetbrains/kotlin/build/report/metrics

1 file changed

+3
-3
lines changed

compiler/build-tools/kotlin-build-statistics/src/org/jetbrains/kotlin/build/report/metrics/BuildTime.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ enum class GradleBuildTime(private val parent: GradleBuildTime? = null, private
111111
COMPILER_PERFORMANCE(COMPILATION_ROUND, readableString = "Compiler time"),
112112
COMPILER_INITIALIZATION(COMPILER_PERFORMANCE, "Compiler initialization time"),
113113
CODE_ANALYSIS(COMPILER_PERFORMANCE, "Compiler code analysis"),
114-
CODE_GENERATION(COMPILER_PERFORMANCE, "Compiler code generation"),
115114
IR_TRANSLATION(COMPILER_PERFORMANCE, "Compiler IR translation"),
116-
IR_LOWERING(COMPILER_PERFORMANCE, "Compiler IR lowering"),
117-
IR_GENERATION(COMPILER_PERFORMANCE, "Compiler IR generation"),
115+
CODE_GENERATION(COMPILER_PERFORMANCE, "Compiler code generation"),
116+
IR_LOWERING(CODE_GENERATION, "Compiler IR lowering"),
117+
IR_GENERATION(CODE_GENERATION, "Compiler IR generation"),
118118
IC_WRITE_HISTORY_FILE(INCREMENTAL_COMPILATION_DAEMON, "Write history file"),
119119
SHRINK_AND_SAVE_CURRENT_CLASSPATH_SNAPSHOT_AFTER_COMPILATION(INCREMENTAL_COMPILATION_DAEMON, "Shrink and save current classpath snapshot after compilation"),
120120
INCREMENTAL_SHRINK_CURRENT_CLASSPATH_SNAPSHOT(SHRINK_AND_SAVE_CURRENT_CLASSPATH_SNAPSHOT_AFTER_COMPILATION, "Shrink current classpath snapshot incrementally"),

0 commit comments

Comments
 (0)