From d9e439063bbd9827df7a6f75471834d8479c3ea3 Mon Sep 17 00:00:00 2001 From: "simonpj@microsoft.com" Date: Fri, 7 Sep 2007 10:11:33 +0000 Subject: [PATCH] Tiny optimisation/simplification to FunDeps.grow --- compiler/types/FunDeps.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/types/FunDeps.lhs b/compiler/types/FunDeps.lhs index 3d90126..a7e9f19 100644 --- a/compiler/types/FunDeps.lhs +++ b/compiler/types/FunDeps.lhs @@ -153,7 +153,7 @@ See also Note [Ambiguity] in TcSimplify \begin{code} grow :: [PredType] -> TyVarSet -> TyVarSet grow preds fixed_tvs - | null preds = real_fixed_tvs + | null preds = fixed_tvs | otherwise = loop real_fixed_tvs where -- Add the implicit parameters; -- 1.7.10.4