[project @ 1999-01-07 14:54:42 by keithw]
authorkeithw <unknown>
Thu, 7 Jan 1999 14:54:42 +0000 (14:54 +0000)
committerkeithw <unknown>
Thu, 7 Jan 1999 14:54:42 +0000 (14:54 +0000)
Add missing pattern to tidyNote.

ghc/compiler/simplCore/SimplCore.lhs

index be827a8..f345c08 100644 (file)
@@ -305,6 +305,8 @@ tidyAlt env (con, vs, rhs)   = (con, vs', tidyExpr env' rhs)
                               (env', vs') = mapAccumL tidyNestedBndr env vs
 
 tidyNote env (Coerce t1 t2)  = Coerce (tidyType env t1) (tidyType env t2)
+
+tidyNote env note            = note
 \end{code}
 
 \begin{code}