diff options
Diffstat (limited to 'compiler/GHC/Driver/Main.hs')
-rw-r--r-- | compiler/GHC/Driver/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Driver/Main.hs b/compiler/GHC/Driver/Main.hs index 739ac5b46a..2f6a3262d0 100644 --- a/compiler/GHC/Driver/Main.hs +++ b/compiler/GHC/Driver/Main.hs @@ -911,7 +911,7 @@ initModDetails hsc_env mod_summary iface = fixIO $ \details' -> do let act hpt = addToHpt hpt (ms_mod_name mod_summary) (HomeModInfo iface details' Nothing) - let hsc_env' = hscUpdateHPT act hsc_env + let !hsc_env' = hscUpdateHPT act hsc_env -- NB: This result is actually not that useful -- in one-shot mode, since we're not going to do -- any further typechecking. It's much more useful |