diff options
author | Oleg Grenrus <oleg.grenrus@iki.fi> | 2023-05-13 12:50:25 +0300 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2023-05-15 14:50:43 -0400 |
commit | 86aae5702d09db2f50c42a3f43ef72df1e3a710b (patch) | |
tree | e0b660bcb474ecd036d5cacfccf78f9621021b70 /compiler/GHC/Driver/Hooks.hs | |
parent | 2f571afe1c2aeb3f4dfca2012bc6b713144fd234 (diff) | |
download | haskell-86aae5702d09db2f50c42a3f43ef72df1e3a710b.tar.gz |
Split DynFlags structure into own module
This will allow to make command line parsing to depend on
diagnostic system (which depends on dynflags)
Diffstat (limited to 'compiler/GHC/Driver/Hooks.hs')
-rw-r--r-- | compiler/GHC/Driver/Hooks.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Driver/Hooks.hs b/compiler/GHC/Driver/Hooks.hs index 7608890ce7..08aa2a1299 100644 --- a/compiler/GHC/Driver/Hooks.hs +++ b/compiler/GHC/Driver/Hooks.hs @@ -32,7 +32,7 @@ where import GHC.Prelude import GHC.Driver.Env -import GHC.Driver.Session +import GHC.Driver.DynFlags import GHC.Driver.Pipeline.Phases import GHC.Hs.Decls |