[project @ 1999-01-28 12:14:00 by simonpj]
authorsimonpj <unknown>
Thu, 28 Jan 1999 12:14:00 +0000 (12:14 +0000)
committersimonpj <unknown>
Thu, 28 Jan 1999 12:14:00 +0000 (12:14 +0000)
Fix missing dash in SimplCore.lhs, which resulted in bogus specialisations

ghc/compiler/simplCore/SimplCore.lhs

index 38297e6..f0b4b72 100644 (file)
@@ -368,7 +368,7 @@ tidyIdInfo env info
     info3 = noUnfolding `setUnfoldingInfo` info2
 
     tidy_item (tyvars, tys, rhs)
-       = (tyvars', tidyTypes env' tys, tidyExpr env rhs)
+       = (tyvars', tidyTypes env' tys, tidyExpr env' rhs)
        where
          (env', tyvars') = tidyTyVars env tyvars
 \end{code}