diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-12-17 19:33:31 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-12-26 17:02:48 -0500 |
commit | 40f141651672877ca9eedc45632a69dc7b634cbc (patch) | |
tree | 7edee7ef2c84a3713cbdd316d8a68f3551a4a06e /compiler/iface/FlagChecker.hs | |
parent | 334290b6681796dd141c964b88c541da13ce03c7 (diff) | |
download | haskell-wip/T17586.tar.gz |
driver: Include debug level in the recompilation check hashwip/T17586
Fixes #17586.
Diffstat (limited to 'compiler/iface/FlagChecker.hs')
-rw-r--r-- | compiler/iface/FlagChecker.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/iface/FlagChecker.hs b/compiler/iface/FlagChecker.hs index 92caee658b..aac2c24995 100644 --- a/compiler/iface/FlagChecker.hs +++ b/compiler/iface/FlagChecker.hs @@ -61,7 +61,7 @@ fingerprintDynFlags dflags@DynFlags{..} this_mod nameio = ticky = map (`gopt` dflags) [Opt_Ticky, Opt_Ticky_Allocd, Opt_Ticky_LNE, Opt_Ticky_Dyn_Thunk] - flags = (mainis, safeHs, lang, cpp, paths, prof, ticky) + flags = ((mainis, safeHs, lang, cpp), (paths, prof, ticky, debugLevel)) in -- pprTrace "flags" (ppr flags) $ computeFingerprint nameio flags |