X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;ds=sidebyside;f=compiler%2FcoreSyn%2FCoreSubst.lhs;h=ba70dbe0bfc7c579f999b96f4170b3b43fb03771;hb=421819753b3eb4940a26e578ef0e4c5cd31761fa;hp=8306c04611d997fda09fbdb9f3ce0dc31c05dadf;hpb=53167b89a0ad08049ed429e09d6863b6b322ec44;p=ghc-hetmet.git diff --git a/compiler/coreSyn/CoreSubst.lhs b/compiler/coreSyn/CoreSubst.lhs index 8306c04..ba70dbe 100644 --- a/compiler/coreSyn/CoreSubst.lhs +++ b/compiler/coreSyn/CoreSubst.lhs @@ -6,6 +6,13 @@ Utility functions on @Core@ syntax \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 CoreSubst ( -- Substitution stuff Subst, TvSubstEnv, IdSubstEnv, InScopeSet, @@ -45,6 +52,8 @@ import Outputable import PprCore () -- Instances import Util import FastTypes + +import Data.List \end{code}