From e0dfd312e47ca7c0b5266152add74941bd1c11e4 Mon Sep 17 00:00:00 2001 From: Svyatoslav Scherbina Date: Mon, 5 Dec 2016 13:59:54 +0700 Subject: [PATCH] Review feedback --- .../src/org/jetbrains/kotlin/backend/konan/llvm/IrToBitcode.kt | 2 ++ 1 file changed, 2 insertions(+) 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 07450419701..6ec6a4059ee 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 @@ -906,6 +906,8 @@ internal class CodeGeneratorVisitor(val context: Context) : IrElementVisitorVoid /** * Cache for [genContinue]. + * + * Note: can't merge with [breakBlocks] because the code for `break` and `continue` is different. */ private val continueBlocks = mutableMapOf()