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/stranal | |
parent | 7d452be454857549679b93a0682a3f6fedf5d7c1 (diff) | |
download | haskell-c2e301aeeae353a64be43e5fa9e7d464797d5648.tar.gz |
compiler: Qualify imports of Data.List
Diffstat (limited to 'compiler/stranal')
-rw-r--r-- | compiler/stranal/DmdAnal.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/stranal/DmdAnal.hs b/compiler/stranal/DmdAnal.hs index dbe1509b42..2a5eb974aa 100644 --- a/compiler/stranal/DmdAnal.hs +++ b/compiler/stranal/DmdAnal.hs @@ -23,7 +23,7 @@ import CoreSeq ( seqBinds ) import Outputable import VarEnv import BasicTypes -import Data.List +import Data.List ( mapAccumL, sortBy ) import DataCon import Id import CoreUtils ( exprIsHNF, exprType, exprIsTrivial, exprOkForSpeculation ) |