Wolfgang Jeltsch pushed to branch wip/jeltsch/textual-bytecode-output at Glasgow Haskell Compiler / GHC Commits: 08ba2433 by Wolfgang Jeltsch at 2026-07-28T14:42:10+03:00 Make `ibi_info_mod` rendered in quotes, like `bi_tick_mod` - - - - - 1 changed file: - compiler/GHC/ByteCode/Show.hs Changes: ===================================== compiler/GHC/ByteCode/Show.hs ===================================== @@ -222,7 +222,9 @@ pprInternalBreakpointID -> SDoc -- ^ The textual information pprInternalBreakpointID current_module InternalBreakpointId {..} | ibi_info_mod == current_module = indexDoc - | otherwise = indexDoc <+> text "in" <+> ppr ibi_info_mod + | otherwise = indexDoc <+> + text "in" <+> + quotes (ppr ibi_info_mod) where indexDoc :: SDoc View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/08ba243389dca17ff60bcc0797cf91c8... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/08ba243389dca17ff60bcc0797cf91c8... You're receiving this email because of your account on gitlab.haskell.org. Manage all notifications: https://gitlab.haskell.org/-/profile/notifications | Help: https://gitlab.haskell.org/help