[Git][ghc/ghc][wip/jeltsch/textual-bytecode-output] Switch to the `assert` from `GHC.Utils.Panic.Plain`
Wolfgang Jeltsch pushed to branch wip/jeltsch/textual-bytecode-output at Glasgow Haskell Compiler / GHC Commits: f2f5df19 by Wolfgang Jeltsch at 2026-07-22T16:13:17+03:00 Switch to the `assert` from `GHC.Utils.Panic.Plain` - - - - - 1 changed file: - compiler/GHC/ByteCode/Show.hs Changes: ===================================== compiler/GHC/ByteCode/Show.hs ===================================== @@ -7,7 +7,6 @@ module GHC.ByteCode.Show (showByteCode) where import Prelude ((+), (-), Integral, div) import Control.Arrow ((>>>)) -import Control.Exception (assert) import Data.Eq ((==)) import Data.Ord ((>=)) import Data.Bits (FiniteBits, finiteBitSize) @@ -38,6 +37,7 @@ import GHC.Types.Name.Occurrence (OccName) import GHC.Types.Tickish (BreakTickIndex, BreakpointId (..)) import GHC.Types.SptEntry (SptEntry (..)) import GHC.Types.Error (MessageClass (MCDump)) +import GHC.Utils.Panic.Plain (assert) import GHC.Utils.Logger (Logger, logMsg) import GHC.Utils.Binary (BinSrcSpan (..)) import GHC.Utils.Encoding.UTF8 (utf8DecodeShortByteString, utf8DecodeByteString) View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/f2f5df1911658516bb5480facdbad5ff... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/f2f5df1911658516bb5480facdbad5ff... 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
participants (1)
-
Wolfgang Jeltsch (@jeltsch)