X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=compiler%2FbasicTypes%2FNewDemand.lhs;h=23619720371155bc67a31b46d74d9b0742b99d79;hb=727fae32ea0b6ca6ebdf1b3137649813e4d7ac3d;hp=6e97dcb7fd45d41c3f22590e471b40a982669cc1;hpb=809a62a4c811746b80ccfd4fe4a28e3ebc3f4909;p=ghc-hetmet.git diff --git a/compiler/basicTypes/NewDemand.lhs b/compiler/basicTypes/NewDemand.lhs index 6e97dcb..2361972 100644 --- a/compiler/basicTypes/NewDemand.lhs +++ b/compiler/basicTypes/NewDemand.lhs @@ -5,6 +5,13 @@ \section[Demand]{@Demand@: the amount of demand on a value} \begin{code} +{-# OPTIONS -w #-} +-- The above warning supression flag is a temporary kludge. +-- While working on this module you are encouraged to remove it and fix +-- any warnings in the module. See +-- http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings +-- for details + module NewDemand( Demand(..), topDmd, lazyDmd, seqDmd, evalDmd, errDmd, isStrictDmd, @@ -28,7 +35,7 @@ module NewDemand( import StaticFlags import BasicTypes import VarEnv -import UniqFM +import LazyUniqFM import Util import Outputable \end{code}