diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-07-26 11:20:39 +0100 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2022-07-27 09:53:32 +0100 |
commit | 81ebaf5a97956f523ad30a0e230986e460303ba6 (patch) | |
tree | c72b0b2a56ed80592d72dfd2281d4c9487cc1959 /compiler/GHC/Driver/Backpack.hs | |
parent | 88f50a6f062375d03ebf05222a277e755e4dd0ab (diff) | |
download | haskell-wip/loop-test.tar.gz |
Store interfaces in ModIfaceCache more directlywip/loop-test
I realised hydration was completely irrelavant for this cache because
the ModDetails are pruned from the result. So now it simplifies things a
lot to just store the ModIface and Linkable, which we can put into the
cache straight away rather than wait for the final version of a
HomeModInfo to appear.
Diffstat (limited to 'compiler/GHC/Driver/Backpack.hs')
-rw-r--r-- | compiler/GHC/Driver/Backpack.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/GHC/Driver/Backpack.hs b/compiler/GHC/Driver/Backpack.hs index 09a5678796..81aa0c50fe 100644 --- a/compiler/GHC/Driver/Backpack.hs +++ b/compiler/GHC/Driver/Backpack.hs @@ -328,7 +328,7 @@ buildUnit session cid insts lunit = do mod_graph <- hsunitModuleGraph False (unLoc lunit) msg <- mkBackpackMsg - ok <- load' noHomeCache LoadAllTargets (Just msg) mod_graph + ok <- load' noIfaceCache LoadAllTargets (Just msg) mod_graph when (failed ok) (liftIO $ exitWith (ExitFailure 1)) let hi_dir = expectJust (panic "hiDir Backpack") $ hiDir dflags @@ -417,7 +417,7 @@ compileExe lunit = do withBkpExeSession deps_w_rns $ do mod_graph <- hsunitModuleGraph True (unLoc lunit) msg <- mkBackpackMsg - ok <- load' noHomeCache LoadAllTargets (Just msg) mod_graph + ok <- load' noIfaceCache LoadAllTargets (Just msg) mod_graph when (failed ok) (liftIO $ exitWith (ExitFailure 1)) -- | Register a new virtual unit database containing a single unit |