Wolfgang Jeltsch pushed to branch wip/jeltsch/textual-bytecode-output at Glasgow Haskell Compiler / GHC Commits: cf65be1f by Wolfgang Jeltsch at 2026-07-01T21:19:28+03:00 Stop prefixing top-level strings with “string” - - - - - 1 changed file: - compiler/GHC/ByteCode/Show.hs Changes: ===================================== compiler/GHC/ByteCode/Show.hs ===================================== @@ -285,10 +285,10 @@ pprTopLevelStrings = entry (text "top-level strings:") . -- | […] pprTopLevelString :: Name -> ByteString -> SDoc pprTopLevelString stringName encodedString - = entry (text "string" <+> ppr stringName <> text ":") $ - text $ - show $ - utf8DecodeByteString $ + = entry (ppr stringName <> text ":") $ + text $ + show $ + utf8DecodeByteString $ encodedString -- | […] View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/cf65be1fccdd9ef888b4d986e0403727... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/cf65be1fccdd9ef888b4d986e0403727... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Wolfgang Jeltsch (@jeltsch)