diff options
Diffstat (limited to 'compiler/GHC/Iface/Syntax.hs')
-rw-r--r-- | compiler/GHC/Iface/Syntax.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler/GHC/Iface/Syntax.hs b/compiler/GHC/Iface/Syntax.hs index 21b4274cc7..baaa4c28a3 100644 --- a/compiler/GHC/Iface/Syntax.hs +++ b/compiler/GHC/Iface/Syntax.hs @@ -325,12 +325,12 @@ data IfaceAnnotation type IfaceAnnTarget = AnnTarget OccName -data IfaceCompleteMatch = IfaceCompleteMatch [IfExtName] (Maybe IfaceTyCon) +data IfaceCompleteMatch = IfaceCompleteMatch [IfExtName] (Maybe IfaceType) instance Outputable IfaceCompleteMatch where - ppr (IfaceCompleteMatch cls mtc) = text "COMPLETE" <> colon <+> ppr cls <+> case mtc of + ppr (IfaceCompleteMatch cls mty) = text "COMPLETE" <> colon <+> ppr cls <+> case mty of Nothing -> empty - Just tc -> dcolon <+> ppr tc + Just ty -> dcolon <+> ppr ty -- Here's a tricky case: -- * Compile with -O module A, and B which imports A.f @@ -2491,7 +2491,7 @@ instance Binary IfaceTyConParent where return $ IfDataInstance ax pr ty instance Binary IfaceCompleteMatch where - put_ bh (IfaceCompleteMatch cs mtc) = put_ bh cs >> put_ bh mtc + put_ bh (IfaceCompleteMatch cs mty) = put_ bh cs >> put_ bh mty get bh = IfaceCompleteMatch <$> get bh <*> get bh @@ -2651,7 +2651,7 @@ instance NFData IfaceConAlt where IfaceLitAlt lit -> lit `seq` () instance NFData IfaceCompleteMatch where - rnf (IfaceCompleteMatch f1 mtc) = rnf f1 `seq` rnf mtc + rnf (IfaceCompleteMatch f1 mty) = rnf f1 `seq` rnf mty instance NFData IfaceRule where rnf (IfaceRule f1 f2 f3 f4 f5 f6 f7 f8) = |