Skip to content
Snippets Groups Projects
Commit 5fdacfcf authored by f-a's avatar f-a Committed by Mergify
Browse files

Add command line options tests for 9.2

parent 1037a1cd
No related branches found
No related tags found
No related merge requests found
......@@ -170,3 +170,34 @@ options_9_0_affects :: [String]
options_9_0_affects =
[ "-fcmm-static-pred"
]
-------------------------------------------------------------------------------
-- GHC-9.2
-------------------------------------------------------------------------------
options_9_2_all :: [String]
options_9_2_all =
[ "-dynohi"
, "-ddump-c-backend"
, "-ddump-stg-from-core"
, "-ddump-stg"
, "-ddump-faststrings"
, "--run"
, "-ffamily-application-cache"
, "-fno-family-application-cache"
] ++ options_9_2_affects
options_9_2_affects :: [String]
options_9_2_affects =
[ "-fprof-callers"
, "-funfolding-case-threshold"
, "-funfolding-case-scaling"
, "-fdistinct-constructor-tables"
, "-finfo-table-map"
, "-fexpose-internal-symbols"
, "-finline-generics"
, "-finline-generics-aggressively"
, "-fno-expose-internal-symbols"
, "-fno-inline-generics"
, "-fno-inline-generics-aggressively"
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment