diff --git a/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/lower/FunctionInlining.kt b/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/lower/FunctionInlining.kt index b803cd928c7..a050058474a 100644 --- a/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/lower/FunctionInlining.kt +++ b/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/lower/FunctionInlining.kt @@ -51,7 +51,6 @@ internal class FunctionInlining(val context: Context): IrElementTransformerVoid( override fun visitFunction(declaration: IrFunction): IrStatement { currentFunction = declaration functionScope = Scope(declaration.descriptor) - // println("visitFunction ${declaration.descriptor.name}") return super.visitFunction(declaration) }