JVM_IR: do not generate redundant load+stores before inline calls

This commit is contained in:
pyos
2019-09-27 11:05:46 +02:00
committed by max-kammerer
parent 59408242db
commit cea69e0706
8 changed files with 57 additions and 28 deletions
@@ -3412,6 +3412,11 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
public void testStackHeightBug() throws Exception {
runTest("compiler/testData/codegen/boxInline/special/stackHeightBug.kt");
}
@TestMetadata("unusedInlineLambda.kt")
public void testUnusedInlineLambda() throws Exception {
runTest("compiler/testData/codegen/boxInline/special/unusedInlineLambda.kt");
}
}
@TestMetadata("compiler/testData/codegen/boxInline/stackOnReturn")