diff options
author | Andreas Klebinger <klebinger.andreas@gmx.at> | 2021-09-21 02:49:08 +0200 |
---|---|---|
committer | Andreas Klebinger <klebinger.andreas@gmx.at> | 2021-09-21 02:49:08 +0200 |
commit | 8ac7ada069aa53f1a6c431fac6a6a1aa9c28efb5 (patch) | |
tree | 7ed61abb4ad5e89ed5ed3d0f51f2b37d4552c17d | |
parent | c908d021a680babe694ed382be5c73ae1c8770af (diff) | |
download | haskell-wip/andreask/inferSimpler.tar.gz |
Fix worker-wrapper-strict flagwip/andreask/inferSimpler
-rw-r--r-- | compiler/GHC/Driver/Session.hs | 2 |
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, |