X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=compiler%2Fiface%2FBinIface.hs;h=6b56119995eed4a272610b70b24dcb2125e46ed3;hp=a31988a0439dc80c6a4f4c3f1eefa8d572c0d9f2;hb=f2dcf256399e9a2de6343c625630b51f8abf4863;hpb=8382f3ad690ab5c26bc3866f9b024bc7a2bc6308 diff --git a/compiler/iface/BinIface.hs b/compiler/iface/BinIface.hs index a31988a..6b56119 100644 --- a/compiler/iface/BinIface.hs +++ b/compiler/iface/BinIface.hs @@ -864,8 +864,6 @@ instance Binary IfaceNote where put_ bh (IfaceCoerce ab) = do putByte bh 1 put_ bh ab - put_ bh IfaceInlineCall = do - putByte bh 2 put_ bh IfaceInlineMe = do putByte bh 3 put_ bh (IfaceCoreNote s) = do @@ -878,7 +876,6 @@ instance Binary IfaceNote where return (IfaceSCC aa) 1 -> do ab <- get bh return (IfaceCoerce ab) - 2 -> do return IfaceInlineCall 3 -> do return IfaceInlineMe _ -> do ac <- get bh return (IfaceCoreNote ac)