JVM_IR KT-34594 don't generate fake local variable for @InlineOnly

This commit is contained in:
Dmitry Petrov
2021-07-30 09:30:17 +03:00
parent 32b380e187
commit 37050e0616
5 changed files with 37 additions and 1 deletions
@@ -0,0 +1,17 @@
@Suppress("INVISIBLE_REFERENCE", "INVISIBLE_MEMBER")
@kotlin.internal.InlineOnly
inline fun inlineOnlyFun() = 42
fun test() = inlineOnlyFun()
// JVM_TEMPLATES
// 1 LDC 0
// 1 ICONST_0
// 0 ISTORE 1
// 2 ISTORE 0
// JVM_IR_TEMPLATES
// 0 LDC 0
// 0 ICONST_0
// 0 ISTORE 1
// 0 ISTORE 0