diff options
author | Oleg Grenrus <oleg.grenrus@iki.fi> | 2023-05-13 12:50:25 +0300 |
---|---|---|
committer | Oleg Grenrus <oleg.grenrus@iki.fi> | 2023-05-15 11:55:31 +0300 |
commit | 6ae8450e0cab396acc40a687285387f85e222c70 (patch) | |
tree | 53b770e52b305bbfdb54978892827eae79b19ff1 /compiler/GHC/Runtime/Context.hs | |
parent | 5cad28e73bf9a1a535fa9ed22800156c1ba2e6c8 (diff) | |
download | haskell-wip/ghc-driver-dynflags.tar.gz |
Split DynFlags structure into own modulewip/ghc-driver-dynflags
This will allow to make command line parsing to depend on
diagnostic system (which depends on dynflags)
Diffstat (limited to 'compiler/GHC/Runtime/Context.hs')
-rw-r--r-- | compiler/GHC/Runtime/Context.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Runtime/Context.hs b/compiler/GHC/Runtime/Context.hs index 5f60abf896..caa61755d7 100644 --- a/compiler/GHC/Runtime/Context.hs +++ b/compiler/GHC/Runtime/Context.hs @@ -19,7 +19,7 @@ import GHC.Prelude import GHC.Hs -import GHC.Driver.Session +import GHC.Driver.DynFlags import {-# SOURCE #-} GHC.Driver.Plugins import GHC.Runtime.Eval.Types ( IcGlobalRdrEnv(..), Resume ) |