diff options
author | Ben Gamari <ben@smart-cactus.org> | 2023-04-12 11:40:39 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2023-05-10 13:53:40 -0400 |
commit | a02756b537b75acba0942381789850662ed6eab3 (patch) | |
tree | 334407c83ce12f2275bf86f810f990cb3bba9513 /compiler/GHC/Driver/Session.hs | |
parent | 37f7aaa85f2da971fd2d430054e42449b596b4de (diff) | |
download | haskell-wip/orig-thunk-info.tar.gz |
compiler: Record original thunk info tables on stackwip/orig-thunk-info
Diffstat (limited to 'compiler/GHC/Driver/Session.hs')
-rw-r--r-- | compiler/GHC/Driver/Session.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/GHC/Driver/Session.hs b/compiler/GHC/Driver/Session.hs index dbd1f542ca..e44a543b13 100644 --- a/compiler/GHC/Driver/Session.hs +++ b/compiler/GHC/Driver/Session.hs @@ -3482,6 +3482,7 @@ fFlagsDeps = [ flagSpec "do-eta-reduction" Opt_DoEtaReduction, flagSpec "do-lambda-eta-expansion" Opt_DoLambdaEtaExpansion, flagSpec "eager-blackholing" Opt_EagerBlackHoling, + flagSpec "orig-thunk-info" Opt_OrigThunkInfo, flagSpec "embed-manifest" Opt_EmbedManifest, flagSpec "enable-rewrite-rules" Opt_EnableRewriteRules, flagSpec "enable-th-splice-warnings" Opt_EnableThSpliceWarnings, |