JVM KT-49092 fix stack corruption in redundant boxing elimination
This commit is contained in:
+36
@@ -1171,6 +1171,42 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt48394.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt49092a.kt")
|
||||
public void testKt49092a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092a.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt49092b.kt")
|
||||
public void testKt49092b() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092b.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt49092c.kt")
|
||||
public void testKt49092c() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092c.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt49092d.kt")
|
||||
public void testKt49092d() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092d.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt49092e.kt")
|
||||
public void testKt49092e() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092e.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt49092f.kt")
|
||||
public void testKt49092f() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092f.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt49548.kt")
|
||||
public void testKt49548() throws Exception {
|
||||
|
||||
+36
@@ -1213,6 +1213,42 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt48394.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt49092a.kt")
|
||||
public void testKt49092a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092a.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt49092b.kt")
|
||||
public void testKt49092b() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092b.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt49092c.kt")
|
||||
public void testKt49092c() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092c.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt49092d.kt")
|
||||
public void testKt49092d() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092d.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt49092e.kt")
|
||||
public void testKt49092e() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092e.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt49092f.kt")
|
||||
public void testKt49092f() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092f.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("kt49548.kt")
|
||||
public void testKt49548() throws Exception {
|
||||
|
||||
+30
@@ -1104,6 +1104,36 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt48394.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt49092a.kt")
|
||||
public void testKt49092a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092a.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt49092b.kt")
|
||||
public void testKt49092b() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092b.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt49092c.kt")
|
||||
public void testKt49092c() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092c.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt49092d.kt")
|
||||
public void testKt49092d() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092d.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt49092e.kt")
|
||||
public void testKt49092e() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092e.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt49092f.kt")
|
||||
public void testKt49092f() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49092f.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt49548.kt")
|
||||
public void testKt49548() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/boxingOptimization/kt49548.kt");
|
||||
|
||||
Reference in New Issue
Block a user