[Git][ghc/ghc][wip/jeltsch/textual-bytecode-output] Remove output of constructor and pointer tags
Wolfgang Jeltsch pushed to branch wip/jeltsch/textual-bytecode-output at Glasgow Haskell Compiler / GHC Commits: c5255641 by Wolfgang Jeltsch at 2026-07-01T20:49:51+03:00 Remove output of constructor and pointer tags - - - - - 1 changed file: - compiler/GHC/ByteCode/Show.hs Changes: ===================================== compiler/GHC/ByteCode/Show.hs ===================================== @@ -251,8 +251,6 @@ pprDataConstructorInfoTable dataConstrName ConInfoTable {..} pprTablePositioning $ conItblTablesNextToCode, pprPointerWordCount $ conItblPtrs, pprNonPointerWordCount $ conItblNPtrs, - pprConstructorTag $ conItblConTag, - pprPointerTag $ conItblPtrTag, pprDescription $ conItblDescr ] @@ -268,14 +266,6 @@ pprPointerWordCount = entry (text "number of words for pointers:") . ppr pprNonPointerWordCount :: Int -> SDoc pprNonPointerWordCount = entry (text "number of words for non-pointers:") . ppr --- | […] -pprConstructorTag :: Int -> SDoc -pprConstructorTag = entry (text "constructor tag:") . ppr - --- | […] -pprPointerTag :: Int -> SDoc -pprPointerTag = entry (text "pointer tag:") . ppr - -- | […] pprDescription :: ByteString -> SDoc pprDescription = entry (text "description:") . View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/c52556410a83f5515ad0425b4ed1cb9a... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/c52556410a83f5515ad0425b4ed1cb9a... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Wolfgang Jeltsch (@jeltsch)