Skip to content

Commit 1214a20

Browse files
committed
Deprecated useIR which was removed in 1.9.20 (JetBrains/kotlin@60016d3)
1 parent 232bd45 commit 1214a20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/kotlin/com/tschuchort/compiletesting/KotlinCompilation.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ class KotlinCompilation : AbstractKotlinCompilation<K2JVMCompilerArguments>() {
7171
var javaParameters: Boolean = false
7272

7373
/** Use the IR backend */
74+
@Deprecated("Since Kotlin 1.9.20 this option is no longer supported by the compiler. It has no effect.")
7475
var useIR: Boolean = false
7576

7677
/** Use the old JVM backend */
@@ -304,7 +305,6 @@ class KotlinCompilation : AbstractKotlinCompilation<K2JVMCompilerArguments>() {
304305

305306
args.jvmTarget = jvmTarget
306307
args.javaParameters = javaParameters
307-
args.useIR = useIR
308308
args.useOldBackend = useOldBackend
309309

310310
if(javaModulePath != null)

0 commit comments

Comments
 (0)