diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2021-05-06 16:07:32 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-05-12 21:41:43 -0400 |
commit | da56ed41b62ab132db6d62637c11076985410b24 (patch) | |
tree | 05f3930ae630e4e90a44021419943d8ccee8ead4 /compiler/GHC/Driver/CodeOutput.hs | |
parent | f78c25da05849797dab684a221923aeac244c69b (diff) | |
download | haskell-da56ed41b62ab132db6d62637c11076985410b24.tar.gz |
Ensure assert from Control.Exception isn't used
Diffstat (limited to 'compiler/GHC/Driver/CodeOutput.hs')
-rw-r--r-- | compiler/GHC/Driver/CodeOutput.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Driver/CodeOutput.hs b/compiler/GHC/Driver/CodeOutput.hs index 60513c9b82..2f028f9c7f 100644 --- a/compiler/GHC/Driver/CodeOutput.hs +++ b/compiler/GHC/Driver/CodeOutput.hs @@ -43,6 +43,7 @@ import GHC.Utils.Error import GHC.Utils.Outputable import GHC.Utils.Panic import GHC.Utils.Logger +import GHC.Utils.Exception (bracket) import GHC.Unit import GHC.Unit.State @@ -53,7 +54,6 @@ import GHC.Types.CostCentre import GHC.Types.ForeignStubs import GHC.Types.Unique.Supply ( mkSplitUniqSupply ) -import Control.Exception import System.Directory import System.FilePath import System.IO |