diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-05-14 10:21:34 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-05-24 01:55:24 -0400 |
commit | a0ea59d641d400543e9e803007500da01eedf48a (patch) | |
tree | d5b817282db575326a3745fd089f3d86a752ff1d /testsuite/tests | |
parent | e0eda0707d6cc3d5a85cfb13543df61623e82070 (diff) | |
download | haskell-a0ea59d641d400543e9e803007500da01eedf48a.tar.gz |
Move Config module into GHC.Settings
Diffstat (limited to 'testsuite/tests')
-rw-r--r-- | testsuite/tests/ghc-api/T7478/T7478.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/ghc-api/ghcApi.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/ghc-api/T7478/T7478.hs b/testsuite/tests/ghc-api/T7478/T7478.hs index 383b1ebd93..2e5c735c9c 100644 --- a/testsuite/tests/ghc-api/T7478/T7478.hs +++ b/testsuite/tests/ghc-api/T7478/T7478.hs @@ -6,7 +6,7 @@ import Control.Monad (void) import System.Environment import GHC -import qualified Config as GHC +import qualified GHC.Settings.Config as GHC import qualified GHC.Utils.Outputable as GHC import GHC.Driver.Monad (liftIO) import GHC.Utils.Outputable (PprStyle, queryQual) diff --git a/testsuite/tests/ghc-api/ghcApi.hs b/testsuite/tests/ghc-api/ghcApi.hs index 90784e8440..91552262d3 100644 --- a/testsuite/tests/ghc-api/ghcApi.hs +++ b/testsuite/tests/ghc-api/ghcApi.hs @@ -1,7 +1,7 @@ module Main where -import Config +import GHC.Settings.Config main :: IO () main = putStrLn cProjectName |