KLIB: don't fail on invalid loops
Temporarily disable assert because this happens in lowered IR
This commit is contained in:
committed by
teamcityserver
parent
48ce8c049d
commit
e03cb372b7
+1
-1
@@ -1063,7 +1063,7 @@ open class IrFileSerializer(
|
||||
expression.label?.let {
|
||||
proto.label = serializeString(it)
|
||||
}
|
||||
val loopId = loopIndex[expression.loop]!!
|
||||
val loopId = loopIndex[expression.loop] ?: -1
|
||||
proto.loopId = loopId
|
||||
|
||||
return proto.build()
|
||||
|
||||
Reference in New Issue
Block a user