Update bytecode text tests for JVM_IR
This commit is contained in:
+13
-6
@@ -1,4 +1,4 @@
|
||||
// IGNORE_BACKEND: JVM_IR
|
||||
// -IGNORE_BACKEND: JVM_IR
|
||||
inline fun <T> runAfterLoop(fn: () -> T): T {
|
||||
for (i in 1..2);
|
||||
return fn()
|
||||
@@ -6,7 +6,7 @@ inline fun <T> runAfterLoop(fn: () -> T): T {
|
||||
|
||||
fun bar() : Boolean = true
|
||||
|
||||
fun foobar(x: Boolean, y: String, z: String) = x.toString() + y + z
|
||||
fun foobar(x: Boolean, y: String, z: String) {}
|
||||
|
||||
inline fun foo() = runAfterLoop { "-" }
|
||||
|
||||
@@ -14,11 +14,18 @@ fun test() {
|
||||
val result = foobar(if (1 == 1) true else bar(), foo(), "OK")
|
||||
}
|
||||
|
||||
// fake inline variables occupy 7 ISTOREs.
|
||||
// 14 ISTORE
|
||||
// 8 ILOAD
|
||||
// 2 ASTORE
|
||||
// 7 ALOAD
|
||||
// 5 ALOAD
|
||||
// 1 MAXLOCALS = 3
|
||||
// 1 MAXLOCALS = 4
|
||||
// 0 InlineMarker
|
||||
|
||||
// JVM_TEMPLATES
|
||||
// fake inline variables occupy 7 ISTOREs.
|
||||
// 14 ISTORE
|
||||
// 7 ILOAD
|
||||
|
||||
// JVM_IR_TEMPLATES
|
||||
// JVM_IR generates an extra induction variable in 'for (i in 1..2)' (see KT-36837)
|
||||
// 17 ISTORE
|
||||
// 10 ILOAD
|
||||
|
||||
Reference in New Issue
Block a user