summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Klebinger <klebinger.andreas@gmx.at>2021-09-21 02:49:08 +0200
committerAndreas Klebinger <klebinger.andreas@gmx.at>2021-09-21 02:49:08 +0200
commit8ac7ada069aa53f1a6c431fac6a6a1aa9c28efb5 (patch)
tree7ed61abb4ad5e89ed5ed3d0f51f2b37d4552c17d
parentc908d021a680babe694ed382be5c73ae1c8770af (diff)
downloadhaskell-wip/andreask/inferSimpler.tar.gz
Fix worker-wrapper-strict flagwip/andreask/inferSimpler
-rw-r--r--compiler/GHC/Driver/Session.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Driver/Session.hs b/compiler/GHC/Driver/Session.hs
index 5835ac17e3..61cf804baf 100644
--- a/compiler/GHC/Driver/Session.hs
+++ b/compiler/GHC/Driver/Session.hs
@@ -3397,7 +3397,7 @@ fFlagsDeps = [
flagSpec "version-macros" Opt_VersionMacros,
flagSpec "worker-wrapper" Opt_WorkerWrapper,
flagSpec "worker-wrapper-strict" Opt_WorkerWrapperUnlift,
- flagSpec "worker-wrapper-rec" Opt_WorkerWrapperUnlift,
+ flagSpec "worker-wrapper-rec" Opt_WorkerWrapperUnliftRec,
flagSpec "solve-constant-dicts" Opt_SolveConstantDicts,
flagSpec "catch-bottoms" Opt_CatchBottoms,
flagSpec "alignment-sanitisation" Opt_AlignmentSanitisation,