X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2FbasicTypes%2FIdInfo.lhs;fp=ghc%2Fcompiler%2FbasicTypes%2FIdInfo.lhs;h=0b5b79ad93f03bb4ec8ad101fbf6e8720bbcfedf;hb=98688c6e8fd33f31c51218cf93cbf03fe3a5e73d;hp=a0002d7c851b351fabe29c390ae8ee72fa92096a;hpb=79c93a8a30aaaa6bd940c0677d6f3c57eb727fa2;p=ghc-hetmet.git diff --git a/ghc/compiler/basicTypes/IdInfo.lhs b/ghc/compiler/basicTypes/IdInfo.lhs index a0002d7..0b5b79a 100644 --- a/ghc/compiler/basicTypes/IdInfo.lhs +++ b/ghc/compiler/basicTypes/IdInfo.lhs @@ -77,7 +77,6 @@ module IdInfo ( import CoreSyn -import TyCon ( TyCon ) import Class ( Class ) import PrimOp ( PrimOp ) import Var ( Id ) @@ -231,7 +230,6 @@ an IdInfo.hi-boot, but no Id.hi-boot, and GlobalIdDetails is imported data GlobalIdDetails = VanillaGlobal -- Imported from elsewhere, a default method Id. - | GenericOpId TyCon -- The to/from operations of a | RecordSelId FieldLabel -- The Id for a record selector | DataConWorkId DataCon -- The Id for a data constructor *worker* | DataConWrapId DataCon -- The Id for a data constructor *wrapper* @@ -252,7 +250,6 @@ notGlobalId = NotGlobalId instance Outputable GlobalIdDetails where ppr NotGlobalId = ptext SLIT("[***NotGlobalId***]") ppr VanillaGlobal = ptext SLIT("[GlobalId]") - ppr (GenericOpId _) = ptext SLIT("[GenericOp]") ppr (DataConWorkId _) = ptext SLIT("[DataCon]") ppr (DataConWrapId _) = ptext SLIT("[DataConWrapper]") ppr (ClassOpId _) = ptext SLIT("[ClassOp]")