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
1 changed file:
Changes:
| ... | ... | @@ -251,8 +251,6 @@ pprDataConstructorInfoTable dataConstrName ConInfoTable {..} |
| 251 | 251 | pprTablePositioning $ conItblTablesNextToCode,
|
| 252 | 252 | pprPointerWordCount $ conItblPtrs,
|
| 253 | 253 | pprNonPointerWordCount $ conItblNPtrs,
|
| 254 | - pprConstructorTag $ conItblConTag,
|
|
| 255 | - pprPointerTag $ conItblPtrTag,
|
|
| 256 | 254 | pprDescription $ conItblDescr
|
| 257 | 255 | ]
|
| 258 | 256 | |
| ... | ... | @@ -268,14 +266,6 @@ pprPointerWordCount = entry (text "number of words for pointers:") . ppr |
| 268 | 266 | pprNonPointerWordCount :: Int -> SDoc
|
| 269 | 267 | pprNonPointerWordCount = entry (text "number of words for non-pointers:") . ppr
|
| 270 | 268 | |
| 271 | --- | […]
|
|
| 272 | -pprConstructorTag :: Int -> SDoc
|
|
| 273 | -pprConstructorTag = entry (text "constructor tag:") . ppr
|
|
| 274 | - |
|
| 275 | --- | […]
|
|
| 276 | -pprPointerTag :: Int -> SDoc
|
|
| 277 | -pprPointerTag = entry (text "pointer tag:") . ppr
|
|
| 278 | - |
|
| 279 | 269 | -- | […]
|
| 280 | 270 | pprDescription :: ByteString -> SDoc
|
| 281 | 271 | pprDescription = entry (text "description:") .
|