Turn an ASSERT into a WARN
[ghc-hetmet.git] / compiler / hsSyn / HsBinds.lhs
index a6d8523..ba3dbd6 100644 (file)
@@ -477,6 +477,9 @@ data SpecPrag
   = SpecPrag   
        HsWrapper       -- An wrapper, that specialises the polymorphic function
        InlinePragma    -- Inlining spec for the specialised function
+
+instance Outputable SpecPrag where
+  ppr (SpecPrag _ p) = ptext (sLit "SpecPrag") <+> ppr p
 \end{code}
 
 \begin{code}