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()