diff --git a/compiler/testData/codegen/bytecodeText/storeStackBeforeInline/differentTypes.kt b/compiler/testData/codegen/bytecodeText/storeStackBeforeInline/differentTypes.kt index 71cf5804af3..f9ae02237c2 100644 --- a/compiler/testData/codegen/bytecodeText/storeStackBeforeInline/differentTypes.kt +++ b/compiler/testData/codegen/bytecodeText/storeStackBeforeInline/differentTypes.kt @@ -1,4 +1,3 @@ -// -IGNORE_BACKEND: JVM_IR inline fun runAfterLoop(fn: () -> T): T { for (i in 1..2); return fn() diff --git a/compiler/testData/codegen/bytecodeText/storeStackBeforeInline/primitiveMerge.kt b/compiler/testData/codegen/bytecodeText/storeStackBeforeInline/primitiveMerge.kt index 1a4cbbe0706..0d0438efde6 100644 --- a/compiler/testData/codegen/bytecodeText/storeStackBeforeInline/primitiveMerge.kt +++ b/compiler/testData/codegen/bytecodeText/storeStackBeforeInline/primitiveMerge.kt @@ -1,4 +1,3 @@ -// -IGNORE_BACKEND: JVM_IR inline fun runAfterLoop(fn: () -> T): T { for (i in 1..2); return fn() diff --git a/compiler/testData/codegen/bytecodeText/when/exhaustiveWhenReturn.kt b/compiler/testData/codegen/bytecodeText/when/exhaustiveWhenReturn.kt index 92dd644c778..56370bda928 100644 --- a/compiler/testData/codegen/bytecodeText/when/exhaustiveWhenReturn.kt +++ b/compiler/testData/codegen/bytecodeText/when/exhaustiveWhenReturn.kt @@ -1,4 +1,3 @@ -//- IGNORE_BACKEND: JVM_IR enum class A { V1, V2, V3 } fun box(a: A): String {