From bc7c8e4819199afa8681654309dcf927d2b07bd4 Mon Sep 17 00:00:00 2001 From: Dmitry Petrov Date: Thu, 20 Feb 2020 14:59:20 +0300 Subject: [PATCH] Update bytecode text tests for JVM_IR --- .../bytecodeText/storeStackBeforeInline/differentTypes.kt | 1 - .../bytecodeText/storeStackBeforeInline/primitiveMerge.kt | 1 - .../testData/codegen/bytecodeText/when/exhaustiveWhenReturn.kt | 1 - 3 files changed, 3 deletions(-) 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 {