diff --git a/compiler/testData/codegen/bytecodeText/constantConditions/inlineIfFalse.kt b/compiler/testData/codegen/bytecodeText/constantConditions/inlineIfFalse.kt index dbc41b5b156..e271a5b29ca 100644 --- a/compiler/testData/codegen/bytecodeText/constantConditions/inlineIfFalse.kt +++ b/compiler/testData/codegen/bytecodeText/constantConditions/inlineIfFalse.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR package inlineInIfFalseDex fun inlineIfFalse() { diff --git a/compiler/testData/codegen/bytecodeText/coroutines/debug/localVariableCorrectLabel.kt b/compiler/testData/codegen/bytecodeText/coroutines/debug/localVariableCorrectLabel.kt index 5c5674b4dde..cb2b95ee703 100644 --- a/compiler/testData/codegen/bytecodeText/coroutines/debug/localVariableCorrectLabel.kt +++ b/compiler/testData/codegen/bytecodeText/coroutines/debug/localVariableCorrectLabel.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR import kotlin.sequences.* import kotlin.experimental.* @@ -24,3 +23,5 @@ suspend fun SequenceScope.awaitSeq(): Int = 42 /* TODO: JVM_IR does not generate LINENUMBER at the end of the lambda */ // JVM_IR_TEMPLATES // 1 LOCALVARIABLE a I L[0-9]+ L16 + +// IGNORE_BACKEND_FIR: JVM_IR diff --git a/compiler/testData/codegen/bytecodeText/forLoop/forInUntil/forInUntilIntMinValue.kt b/compiler/testData/codegen/bytecodeText/forLoop/forInUntil/forInUntilIntMinValue.kt index fbd0abd8d62..0139b5f6453 100644 --- a/compiler/testData/codegen/bytecodeText/forLoop/forInUntil/forInUntilIntMinValue.kt +++ b/compiler/testData/codegen/bytecodeText/forLoop/forInUntil/forInUntilIntMinValue.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR const val M = Int.MIN_VALUE fun f(a: Int): Int { diff --git a/compiler/testData/codegen/bytecodeText/forLoop/forInUntil/forInUntilLongMinValue.kt b/compiler/testData/codegen/bytecodeText/forLoop/forInUntil/forInUntilLongMinValue.kt index 4547c36f568..7a0b506cdf3 100644 --- a/compiler/testData/codegen/bytecodeText/forLoop/forInUntil/forInUntilLongMinValue.kt +++ b/compiler/testData/codegen/bytecodeText/forLoop/forInUntil/forInUntilLongMinValue.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR const val M = Long.MIN_VALUE fun f(a: Long): Int { diff --git a/compiler/testData/codegen/bytecodeText/forLoop/unsigned/forInUntilUIntMinValue.kt b/compiler/testData/codegen/bytecodeText/forLoop/unsigned/forInUntilUIntMinValue.kt index 8a972213a87..c5e5c9fe327 100644 --- a/compiler/testData/codegen/bytecodeText/forLoop/unsigned/forInUntilUIntMinValue.kt +++ b/compiler/testData/codegen/bytecodeText/forLoop/unsigned/forInUntilUIntMinValue.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR // WITH_RUNTIME const val M = UInt.MIN_VALUE diff --git a/compiler/testData/codegen/bytecodeText/forLoop/unsigned/forInUntilULongMinValue.kt b/compiler/testData/codegen/bytecodeText/forLoop/unsigned/forInUntilULongMinValue.kt index 054a5aaccc5..e0a09f1bbc9 100644 --- a/compiler/testData/codegen/bytecodeText/forLoop/unsigned/forInUntilULongMinValue.kt +++ b/compiler/testData/codegen/bytecodeText/forLoop/unsigned/forInUntilULongMinValue.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR // WITH_RUNTIME const val M = ULong.MIN_VALUE diff --git a/compiler/testData/codegen/bytecodeText/lineNumbers/ifConsts.kt b/compiler/testData/codegen/bytecodeText/lineNumbers/ifConsts.kt index f1c600b4f85..6fdeedeffbf 100644 --- a/compiler/testData/codegen/bytecodeText/lineNumbers/ifConsts.kt +++ b/compiler/testData/codegen/bytecodeText/lineNumbers/ifConsts.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR fun cond() = false fun bar() {} diff --git a/compiler/testData/codegen/bytecodeText/lineNumbers/ifElse.kt b/compiler/testData/codegen/bytecodeText/lineNumbers/ifElse.kt index b15e3d5fdac..302c4d2b588 100644 --- a/compiler/testData/codegen/bytecodeText/lineNumbers/ifElse.kt +++ b/compiler/testData/codegen/bytecodeText/lineNumbers/ifElse.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR fun foo() { if (0 < 1) { System.out?.println() diff --git a/compiler/testData/codegen/bytecodeText/lineNumbers/ifFalse.kt b/compiler/testData/codegen/bytecodeText/lineNumbers/ifFalse.kt index 9b7482df843..d51843a2e0d 100644 --- a/compiler/testData/codegen/bytecodeText/lineNumbers/ifFalse.kt +++ b/compiler/testData/codegen/bytecodeText/lineNumbers/ifFalse.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR fun foo(): Int { if (false) { return 1 diff --git a/compiler/testData/codegen/bytecodeText/lineNumbers/ifFalseElse.kt b/compiler/testData/codegen/bytecodeText/lineNumbers/ifFalseElse.kt index 7ad4545652c..899ced55af5 100644 --- a/compiler/testData/codegen/bytecodeText/lineNumbers/ifFalseElse.kt +++ b/compiler/testData/codegen/bytecodeText/lineNumbers/ifFalseElse.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR fun foo(): Int { if (false) { return 1 diff --git a/compiler/testData/codegen/bytecodeText/lineNumbers/ifTrue.kt b/compiler/testData/codegen/bytecodeText/lineNumbers/ifTrue.kt index 7e06cfe8993..c637bc4ee16 100644 --- a/compiler/testData/codegen/bytecodeText/lineNumbers/ifTrue.kt +++ b/compiler/testData/codegen/bytecodeText/lineNumbers/ifTrue.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR fun foo(): Int { if (true) { return 1 diff --git a/compiler/testData/codegen/bytecodeText/lineNumbers/ifTrueElse.kt b/compiler/testData/codegen/bytecodeText/lineNumbers/ifTrueElse.kt index 4d46f5509ca..ed33ff7b39a 100644 --- a/compiler/testData/codegen/bytecodeText/lineNumbers/ifTrueElse.kt +++ b/compiler/testData/codegen/bytecodeText/lineNumbers/ifTrueElse.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR fun foo(): Int { if (true) { return 1 diff --git a/compiler/testData/codegen/bytecodeText/lineNumbers/inlineCondition.kt b/compiler/testData/codegen/bytecodeText/lineNumbers/inlineCondition.kt index 2bd7ddbbdb8..4ca2079a094 100644 --- a/compiler/testData/codegen/bytecodeText/lineNumbers/inlineCondition.kt +++ b/compiler/testData/codegen/bytecodeText/lineNumbers/inlineCondition.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR //FILE: test.kt diff --git a/compiler/testData/codegen/bytecodeText/lineNumbers/inlineCondition2.kt b/compiler/testData/codegen/bytecodeText/lineNumbers/inlineCondition2.kt index 474ba57fa98..902a94d2767 100644 --- a/compiler/testData/codegen/bytecodeText/lineNumbers/inlineCondition2.kt +++ b/compiler/testData/codegen/bytecodeText/lineNumbers/inlineCondition2.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR //FILE: test.kt fun box() { diff --git a/compiler/testData/codegen/bytecodeText/lineNumbers/singleThen.kt b/compiler/testData/codegen/bytecodeText/lineNumbers/singleThen.kt index c8b501071f6..a92db8cec9e 100644 --- a/compiler/testData/codegen/bytecodeText/lineNumbers/singleThen.kt +++ b/compiler/testData/codegen/bytecodeText/lineNumbers/singleThen.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR fun foo() { if (0 < 1) { System.out?.println() diff --git a/compiler/testData/codegen/bytecodeText/lineNumbers/tryCatch.kt b/compiler/testData/codegen/bytecodeText/lineNumbers/tryCatch.kt index 89a45e6e7bb..0fdc13a0e6b 100644 --- a/compiler/testData/codegen/bytecodeText/lineNumbers/tryCatch.kt +++ b/compiler/testData/codegen/bytecodeText/lineNumbers/tryCatch.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR fun foo() { try { System.out?.println()