From 5f3dad14a2e2062e3aa84ad25222e966ad132622 Mon Sep 17 00:00:00 2001 From: Igor Chevdar Date: Tue, 13 Jun 2023 12:56:46 +0300 Subject: [PATCH] [K/N] Make -Xlazy-ir-for-caches disabled by default --- .../org/jetbrains/kotlin/backend/konan/SetupConfiguration.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/SetupConfiguration.kt b/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/SetupConfiguration.kt index cf811d6d6c2..812e7b827bf 100644 --- a/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/SetupConfiguration.kt +++ b/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/SetupConfiguration.kt @@ -265,7 +265,7 @@ fun CompilerConfiguration.setupFromArguments(arguments: K2NativeCompilerArgument } }) put(LAZY_IR_FOR_CACHES, when (arguments.lazyIrForCaches) { - null -> true + null -> false "enable" -> true "disable" -> false else -> {