[Git][ghc/ghc][wip/jeltsch/textual-bytecode-output] Remove output of info table descriptions
Wolfgang Jeltsch pushed to branch wip/jeltsch/textual-bytecode-output at Glasgow Haskell Compiler / GHC Commits: c59ed270 by Wolfgang Jeltsch at 2026-07-01T21:42:31+03:00 Remove output of info table descriptions - - - - - 1 changed file: - compiler/GHC/ByteCode/Show.hs Changes: ===================================== compiler/GHC/ByteCode/Show.hs ===================================== @@ -254,8 +254,7 @@ pprDataConstructorInfoTable dataConstrName ConInfoTable {..} vcat [ pprTablePositioning $ conItblTablesNextToCode, pprPointerWordCount $ conItblPtrs, - pprNonPointerWordCount $ conItblNPtrs, - pprDescription $ conItblDescr + pprNonPointerWordCount $ conItblNPtrs ] -- | […] @@ -270,12 +269,6 @@ pprPointerWordCount = entry (text "number of words for pointers:") . ppr pprNonPointerWordCount :: Int -> SDoc pprNonPointerWordCount = entry (text "number of words for non-pointers:") . ppr --- | […] -pprDescription :: ByteString -> SDoc -pprDescription = entry (text "description:") . - text . - utf8DecodeByteString - -- | […] pprTopLevelStrings :: [(Name, ByteString)] -> SDoc pprTopLevelStrings = entry (text "top-level strings:") . View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/c59ed27070199bade15ba307b174922d... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/c59ed27070199bade15ba307b174922d... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Wolfgang Jeltsch (@jeltsch)