diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-03-17 15:32:32 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-05-01 10:37:39 -0400 |
commit | f8386c7b6a9d26bc5fd2c1d74d944c8df6337690 (patch) | |
tree | 2160d6880a430f07f4a0ac7a58b0355afe139649 /compiler/GHC/CmmToAsm.hs | |
parent | 780de9e11014a88a4f676eb296c30fec2b07b5c2 (diff) | |
download | haskell-f8386c7b6a9d26bc5fd2c1d74d944c8df6337690.tar.gz |
Refactor PprDebug handling
If `-dppr-debug` is set, then PprUser and PprDump styles are silently
replaced with PprDebug style. This was done in `mkUserStyle` and
`mkDumpStyle` smart constructors. As a consequence they needed a
DynFlags parameter.
Now we keep the original PprUser and PprDump styles until they are used
to create an `SDocContext`. I.e. the substitution is only performed in
`initSDocContext`.
Diffstat (limited to 'compiler/GHC/CmmToAsm.hs')
-rw-r--r-- | compiler/GHC/CmmToAsm.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/CmmToAsm.hs b/compiler/GHC/CmmToAsm.hs index 34b877d696..544edc801e 100644 --- a/compiler/GHC/CmmToAsm.hs +++ b/compiler/GHC/CmmToAsm.hs @@ -390,7 +390,7 @@ finishNativeGen dflags modLoc bufh@(BufHandle _ _ h) us ngs $ makeImportsDoc dflags (concat (ngs_imports ngs)) return us' where - dump_stats = dumpAction dflags (mkDumpStyle dflags alwaysQualify) + dump_stats = dumpAction dflags (mkDumpStyle alwaysQualify) (dumpOptionsFromFlag Opt_D_dump_asm_stats) "NCG stats" FormatText |