Remove -Xexclude-from-dumping
Apparently the underlying logic was removed in b07690fccf and no one
noticed.
This commit is contained in:
committed by
Space Team
parent
6db0aaef35
commit
3f2b51151f
-6
@@ -248,12 +248,6 @@ abstract class CommonCompilerArguments : CommonToolArguments() {
|
||||
)
|
||||
var phasesToDump: Array<String>? by FreezableVar(null)
|
||||
|
||||
@Argument(
|
||||
value = "-Xexclude-from-dumping",
|
||||
description = "Names of elements that should not be dumped"
|
||||
)
|
||||
var namesExcludedFromDumping: Array<String>? by FreezableVar(null)
|
||||
|
||||
@Argument(
|
||||
value = "-Xdump-directory",
|
||||
description = "Dump backend state into directory"
|
||||
|
||||
@@ -37,8 +37,6 @@ fun createPhaseConfig(
|
||||
val toValidateStateBefore = beforeValidateSet + bothValidateSet
|
||||
val toValidateStateAfter = afterValidateSet + bothValidateSet
|
||||
|
||||
val namesOfElementsExcludedFromDumping = arguments.namesExcludedFromDumping?.toSet() ?: emptySet()
|
||||
|
||||
val needProfiling = arguments.profilePhases
|
||||
val checkConditions = arguments.checkPhaseConditions
|
||||
val checkStickyConditions = arguments.checkStickyPhaseConditions
|
||||
@@ -54,7 +52,6 @@ fun createPhaseConfig(
|
||||
dumpOnlyFqName,
|
||||
toValidateStateBefore,
|
||||
toValidateStateAfter,
|
||||
namesOfElementsExcludedFromDumping,
|
||||
needProfiling,
|
||||
checkConditions,
|
||||
checkStickyConditions
|
||||
|
||||
Reference in New Issue
Block a user