diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-12-17 19:33:31 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-12-30 06:51:32 -0500 |
commit | 2528e6847d6ab11b452998e5511d60b26453f022 (patch) | |
tree | 28d2d2145f4870ee6a08b07245a4d46bb4bd9b4a /compiler/iface | |
parent | d03dec8ff7681423b9cafa2ce1b5b5f624e664c7 (diff) | |
download | haskell-2528e6847d6ab11b452998e5511d60b26453f022.tar.gz |
driver: Include debug level in the recompilation check hash
Fixes #17586.
Diffstat (limited to 'compiler/iface')
-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 |