JVM remove dead code during constant condition elimination
This avoids an extra call to 'analyze', which is rather costly. Update debugger testData: Constant condition elimination now performs DCE more consistently.
This commit is contained in:
committed by
TeamCityServer
parent
1fd94d1bc2
commit
7a43c2de79
+15
@@ -6152,11 +6152,26 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
||||
runTest("compiler/testData/codegen/box/controlStructures/quicksort.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("tryCatchExpression.kt")
|
||||
public void testTryCatchExpression() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/tryCatchExpression.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("tryCatchFinally.kt")
|
||||
public void testTryCatchFinally() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/tryCatchFinally.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("tryCatchFinallyChain.kt")
|
||||
public void testTryCatchFinallyChain() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/tryCatchFinallyChain.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("tryFinally.kt")
|
||||
public void testTryFinally() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/tryFinally.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("tryFinallyGeneric.kt")
|
||||
public void testTryFinallyGeneric() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/tryFinallyGeneric.kt");
|
||||
|
||||
Reference in New Issue
Block a user