[project @ 2003-09-16 13:03:37 by simonmar]
[ghc-hetmet.git] / ghc / compiler / rename / RnHsSyn.lhs
index 5c959d2..0d20ecf 100644 (file)
@@ -209,7 +209,6 @@ hsIdInfoFVs other        = emptyFVs
 ----------------
 ufExprFVs (UfVar n)      = unitFV n
 ufExprFVs (UfLit l)      = emptyFVs
-ufExprFVs (UfLitLit l ty) = extractHsTyNames ty
 ufExprFVs (UfFCall cc ty) = extractHsTyNames ty
 ufExprFVs (UfType ty)     = extractHsTyNames ty
 ufExprFVs (UfTuple tc es) = hsTupConFVs tc `plusFV` plusFVs (map ufExprFVs es)
@@ -229,7 +228,6 @@ ufAltFVs (con, vs, e) = ufConFVs con `plusFV` delFVs vs (ufExprFVs e)
 
 ufConFVs (UfDataAlt n)      = unitFV n
 ufConFVs (UfTupleAlt t)     = hsTupConFVs t
-ufConFVs (UfLitLitAlt _ ty) = extractHsTyNames ty
 ufConFVs other             = emptyFVs
 
 ufNoteFVs (UfCoerce ty) = extractHsTyNames ty