X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=compiler%2Fspecialise%2FRules.lhs;h=c1d2006229e359e2050b3f41666ec1b458460411;hp=ed9f2388bc4b2d1f382e27a18150ebac90040cda;hb=7fc749a43b4b6b85d234fa95d4928648259584f4;hpb=59a4ad63f93f4fd7b8ede74bb2ea36778fe25e06 diff --git a/compiler/specialise/Rules.lhs b/compiler/specialise/Rules.lhs index ed9f238..c1d2006 100644 --- a/compiler/specialise/Rules.lhs +++ b/compiler/specialise/Rules.lhs @@ -4,6 +4,13 @@ \section[CoreRules]{Transformation rules} \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 Rules ( RuleBase, emptyRuleBase, mkRuleBase, extendRuleBaseList, unionRuleBase, pprRuleBase, ruleCheckProgram, @@ -45,7 +52,7 @@ import Maybes import OrdList import Bag import Util -import List hiding( mapAccumL ) -- Also defined in Util +import Data.List \end{code}