[Git][ghc/ghc][wip/jeltsch/textual-bytecode-output] Remove output of info table positioning
Wolfgang Jeltsch pushed to branch wip/jeltsch/textual-bytecode-output at Glasgow Haskell Compiler / GHC Commits: 17901d77 by Wolfgang Jeltsch at 2026-07-02T13:33:39+03:00 Remove output of info table positioning - - - - - 1 changed file: - compiler/GHC/ByteCode/Show.hs Changes: ===================================== compiler/GHC/ByteCode/Show.hs ===================================== @@ -252,15 +252,10 @@ pprDataConstructorInfoTable :: Name -> ConInfoTable -> SDoc pprDataConstructorInfoTable dataConstrName ConInfoTable {..} = entry (text "info table of" <+> ppr dataConstrName <> text ":") $ vcat [ - pprTablePositioning $ conItblTablesNextToCode, pprPointerWordCount $ conItblPtrs, pprNonPointerWordCount $ conItblNPtrs ] --- | […] -pprTablePositioning :: Bool -> SDoc -pprTablePositioning = entry (text "tables next to code:") . noOrYes - -- | […] pprPointerWordCount :: Int -> SDoc pprPointerWordCount = entry (text "number of words for pointers:") . ppr View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/17901d772fde45976e8a74bd4d21cc6b... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/17901d772fde45976e8a74bd4d21cc6b... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Wolfgang Jeltsch (@jeltsch)