From 8e2b76698a636bf0024f2a36bcac1fa1c8edfe2c Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Tue, 21 Jan 2020 11:59:33 +0100 Subject: [PATCH] Remove -Xno-use-ir from modules where JVM IR problems are fixed The problems in JVM IR backend in these modules are fixed by: * kapt3-cli -- 1c527fc1 * frontend -- 174b3db7 * daemon-common-new -- 6fe214d8 & d17afdda --- compiler/daemon/daemon-common-new/build.gradle.kts | 3 --- compiler/frontend/build.gradle.kts | 3 --- plugins/kapt3/kapt3-cli/build.gradle.kts | 3 --- 3 files changed, 9 deletions(-) diff --git a/compiler/daemon/daemon-common-new/build.gradle.kts b/compiler/daemon/daemon-common-new/build.gradle.kts index 8b8cfd7a311..c700ced8ab2 100644 --- a/compiler/daemon/daemon-common-new/build.gradle.kts +++ b/compiler/daemon/daemon-common-new/build.gradle.kts @@ -42,6 +42,3 @@ sourceSets { "main" { projectDefault() } "test" {} } - -val compileKotlin: org.jetbrains.kotlin.gradle.tasks.KotlinCompile by tasks -compileKotlin.kotlinOptions.freeCompilerArgs += "-Xno-use-ir" diff --git a/compiler/frontend/build.gradle.kts b/compiler/frontend/build.gradle.kts index e82569a727d..170d6e3e2a2 100644 --- a/compiler/frontend/build.gradle.kts +++ b/compiler/frontend/build.gradle.kts @@ -23,6 +23,3 @@ sourceSets { "main" { projectDefault() } "test" {} } - -val compileKotlin: org.jetbrains.kotlin.gradle.tasks.KotlinCompile by tasks -compileKotlin.kotlinOptions.freeCompilerArgs += "-Xno-use-ir" diff --git a/plugins/kapt3/kapt3-cli/build.gradle.kts b/plugins/kapt3/kapt3-cli/build.gradle.kts index 7ace921ba13..d98e988de6b 100644 --- a/plugins/kapt3/kapt3-cli/build.gradle.kts +++ b/plugins/kapt3/kapt3-cli/build.gradle.kts @@ -24,6 +24,3 @@ projectTest { workingDir = rootDir dependsOn(":dist") } - -val compileKotlin: org.jetbrains.kotlin.gradle.tasks.KotlinCompile by tasks -compileKotlin.kotlinOptions.freeCompilerArgs += "-Xno-use-ir"