From 150d0f6cd57ddc1be7afe5fc20d9dabfb153d265 Mon Sep 17 00:00:00 2001 From: Svyatoslav Scherbina Date: Tue, 10 Jan 2017 11:27:04 +0700 Subject: [PATCH] backend: update kotlin-compiler and remove code contributed to Kotlin Update kotlin-compiler to 1.1-20170112.203631-353 Also remove workarounds for fixed bugs. --- .../org/jetbrains/kotlin/backend/konan/llvm/IrToBitcode.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 3b9e3cb9243..31d210fc4e6 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 @@ -33,9 +33,9 @@ internal fun emitLLVM(context: Context) { val irModule = context.irModule!! // Note that we don't set module target explicitly. - // It is determined by the target of runtime.bc + // It is determined by the target of runtime.bc // (see Llvm class in ContextUtils) - // Which in turn is determined by the clang flags + // Which in turn is determined by the clang flags // used to compile runtime.bc. val llvmModule = LLVMModuleCreateWithName("out")!! // TODO: dispose context.llvmModule = llvmModule