diff --git a/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/Context.kt b/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/Context.kt index f15ea7e8e60..60bd740f654 100644 --- a/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/Context.kt +++ b/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/Context.kt @@ -210,7 +210,7 @@ internal class Context(config: KonanConfig) : KonanBackendContext(config) { override val configuration get() = config.configuration - val phaseConfig = PhaseConfig(toplevelPhase, config.configuration) + val phaseConfig = PhaseConfig(toplevelPhase) private val packageScope by lazy { builtIns.builtInsModule.getPackage(KonanFqNames.internalPackageName).memberScope } diff --git a/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/ir/KonanIr.kt b/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/ir/KonanIr.kt index 597421c0f5d..63a3c690bce 100644 --- a/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/ir/KonanIr.kt +++ b/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/ir/KonanIr.kt @@ -101,8 +101,6 @@ class IrFileImpl(entry: SourceManager.FileEntry) : IrFile { get() = TODO("not implemented") override val fqName: FqName get() = TODO("not implemented") - override val fileAnnotations: MutableList - get() = TODO("not implemented") override val symbol: IrFileSymbol get() = TODO("not implemented") override val packageFragmentDescriptor: PackageFragmentDescriptor diff --git a/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/llvm/IrToBitcode.kt b/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/llvm/IrToBitcode.kt index 4d3dbfbe4f2..6dc34ff6dbd 100644 --- a/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/llvm/IrToBitcode.kt +++ b/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/llvm/IrToBitcode.kt @@ -721,12 +721,6 @@ internal class CodeGeneratorVisitor(val context: Context, val lifetimes: Map