JVM_IR. Add IrAsmLikeInstructionListingTestGenerated tests

This commit is contained in:
Mikhael Bogdanov
2020-01-28 13:50:13 +01:00
parent 342ff50e31
commit f5f25224b0
18 changed files with 234 additions and 0 deletions
@@ -0,0 +1,13 @@
/*
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.codegen.ir
import org.jetbrains.kotlin.codegen.AbstractAsmLikeInstructionListingTest
import org.jetbrains.kotlin.test.TargetBackend
abstract class AbstractIrAsmLikeInstructionListingTest : AbstractAsmLikeInstructionListingTest() {
override fun getBackend() = TargetBackend.JVM_IR
}