[project @ 2002-09-09 12:18:09 by simonpj]
authorsimonpj <unknown>
Mon, 9 Sep 2002 12:18:09 +0000 (12:18 +0000)
committersimonpj <unknown>
Mon, 9 Sep 2002 12:18:09 +0000 (12:18 +0000)
Formatting only

ghc/compiler/specialise/Specialise.lhs

index 56aa638..c9627c3 100644 (file)
@@ -1029,10 +1029,9 @@ mkCallUDs subst f args
     spec_tys = [mk_spec_ty tv ty | (tv, Type ty) <- tyvars `zip` args]
     dicts    = [dict_expr | (_, dict_expr) <- theta `zip` (drop n_tyvars args)]
     
-    mk_spec_ty tyvar ty | tyvar `elemVarSet` constrained_tyvars
-                       = Just ty
-                       | otherwise
-                       = Nothing
+    mk_spec_ty tyvar ty 
+       | tyvar `elemVarSet` constrained_tyvars = Just ty
+       | otherwise                             = Nothing
 
 ------------------------------------------------------------                   
 plusUDs :: UsageDetails -> UsageDetails -> UsageDetails