diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-12-29 21:03:35 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-02-08 10:17:55 -0500 |
commit | c2e301aeeae353a64be43e5fa9e7d464797d5648 (patch) | |
tree | b5b4b564552c3731079528dadbdc138cafad7498 /compiler/nativeGen | |
parent | 7d452be454857549679b93a0682a3f6fedf5d7c1 (diff) | |
download | haskell-c2e301aeeae353a64be43e5fa9e7d464797d5648.tar.gz |
compiler: Qualify imports of Data.List
Diffstat (limited to 'compiler/nativeGen')
-rw-r--r-- | compiler/nativeGen/CFG.hs | 2 | ||||
-rw-r--r-- | compiler/nativeGen/Reg.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/nativeGen/CFG.hs b/compiler/nativeGen/CFG.hs index 90573221f8..f5c2a6456f 100644 --- a/compiler/nativeGen/CFG.hs +++ b/compiler/nativeGen/CFG.hs @@ -80,7 +80,7 @@ import Outputable import GHC.Cmm.Ppr () -- For Outputable instances import qualified DynFlags as D -import Data.List +import Data.List (sort, nub, partition) import Data.STRef.Strict import Control.Monad.ST diff --git a/compiler/nativeGen/Reg.hs b/compiler/nativeGen/Reg.hs index 7f69ea01a4..3808434d62 100644 --- a/compiler/nativeGen/Reg.hs +++ b/compiler/nativeGen/Reg.hs @@ -31,7 +31,7 @@ import GhcPrelude import Outputable import Unique import RegClass -import Data.List +import Data.List (intersect) -- | An identifier for a primitive real machine register. type RegNo |