Skip to content

Commit 87c8aa1

Browse files
JSMonkSpace Team
authored and
Space Team
committed
[K/JS] Fix case with boxing/unboxing inside the BlockDecomposerLowering ^KT-63808 Fixed
1 parent 316df8d commit 87c8aa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/ir/backend.js/src/org/jetbrains/kotlin/ir/backend/js/lower/BlockDecomposerLowering.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ class BlockDecomposerTransformer(
571571
lastIntrinsicCall = JsIrBuilder.buildCall(saveToTmp.symbol, saveToTmp.type, saveToTmp.typeArguments.filterNotNull())
572572
rootIntrinsicCall = lastIntrinsicCall
573573
} else {
574-
val nextCall = JsIrBuilder.buildCall(saveToTmp.symbol)
574+
val nextCall = JsIrBuilder.buildCall(saveToTmp.symbol, saveToTmp.type, saveToTmp.typeArguments.filterNotNull())
575575
lastIntrinsicCall.putValueArgument(0, nextCall)
576576
lastIntrinsicCall = nextCall
577577
}

0 commit comments

Comments
 (0)