[commit: ghc] master: Fix redundant import in CSE (4f10a22)
git at git.haskell.org
git at git.haskell.org
Wed Mar 1 00:46:56 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/4f10a2297952fee8be12bb80606707e4175282bb/ghc
>---------------------------------------------------------------
commit 4f10a2297952fee8be12bb80606707e4175282bb
Author: David Feuer <David.Feuer at gmail.com>
Date: Tue Feb 28 19:46:35 2017 -0500
Fix redundant import in CSE
>---------------------------------------------------------------
4f10a2297952fee8be12bb80606707e4175282bb
compiler/simplCore/CSE.hs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/compiler/simplCore/CSE.hs b/compiler/simplCore/CSE.hs
index 31f0901..0feb676 100644
--- a/compiler/simplCore/CSE.hs
+++ b/compiler/simplCore/CSE.hs
@@ -24,7 +24,7 @@ import CoreSyn
import Outputable
import BasicTypes ( isAlwaysActive, isAnyInlinePragma )
import TrieMap
-import Util ( compareLength, filterOut )
+import Util ( filterOut )
import Data.List ( mapAccumL )
{-
More information about the ghc-commits
mailing list