CLI: remove obsolete -Xdump-declarations-to

It was only used in the very old version of binary compatibility
validator. It was never supported in the JVM IR backend.
This commit is contained in:
Alexander Udalov
2023-09-17 00:21:14 +02:00
committed by Space Team
parent d450e3074b
commit 49c659b379
35 changed files with 0 additions and 1625 deletions
@@ -322,8 +322,6 @@ fun CompilerConfiguration.configureAdvancedJvmOptions(arguments: K2JVMCompilerAr
messageCollector.report(INFO, "Using preview Java language features")
}
arguments.declarationsOutputPath?.let { put(JVMConfigurationKeys.DECLARATIONS_JSON_PATH, it) }
val nThreadsRaw = parseBackendThreads(arguments.backendThreads, messageCollector)
val nThreads = if (nThreadsRaw == 0) Runtime.getRuntime().availableProcessors() else nThreadsRaw
if (nThreads > 1) {