rename experimental command line flag and group with the other experimental feature.

This commit is contained in:
Mathew Polzin 2021-07-15 17:24:12 -07:00
parent 89125e96dd
commit ec3b868cb6

View File

@ -234,8 +234,6 @@ options = [MkOpt ["--check", "-c"] [] [CheckOnly]
(Just $ "Set output directory"), (Just $ "Set output directory"),
MkOpt ["--profile"] [] [Profile] MkOpt ["--profile"] [] [Profile]
(Just "Generate profile data when compiling, if supported"), (Just "Generate profile data when compiling, if supported"),
MkOpt ["--case-tree-opt"] [] [CaseTreeHeuristics]
(Just "Apply experimental optimizations to case tree generation"),
optSeparator, optSeparator,
MkOpt ["-Werror"] [] [WarningsAsErrors] MkOpt ["-Werror"] [] [WarningsAsErrors]
@ -246,6 +244,8 @@ options = [MkOpt ["--check", "-c"] [] [CheckOnly]
optSeparator, optSeparator,
MkOpt ["-Xcheck-hashes"] [] [HashesInsteadOfModTime] MkOpt ["-Xcheck-hashes"] [] [HashesInsteadOfModTime]
(Just "Use SHA256 hashes instead of modification time to determine if a source file needs rebuilding"), (Just "Use SHA256 hashes instead of modification time to determine if a source file needs rebuilding"),
MkOpt ["-Xcase-tree-opt"] [] [CaseTreeHeuristics]
(Just "Apply experimental optimizations to case tree generation"),
optSeparator, optSeparator,
MkOpt ["--prefix"] [] [ShowPrefix] MkOpt ["--prefix"] [] [ShowPrefix]