Wolfgang Jeltsch pushed to branch wip/jeltsch/textual-bytecode-output at Glasgow Haskell Compiler / GHC

Commits:

1 changed file:

Changes:

  • compiler/GHC/ByteCode/Show.hs
    ... ... @@ -7,7 +7,6 @@ module GHC.ByteCode.Show (showByteCode) where
    7 7
     
    
    8 8
     import Prelude ((+), (-), Integral, div)
    
    9 9
     import Control.Arrow ((>>>))
    
    10
    -import Control.Exception (assert)
    
    11 10
     import Data.Eq ((==))
    
    12 11
     import Data.Ord ((>=))
    
    13 12
     import Data.Bits (FiniteBits, finiteBitSize)
    
    ... ... @@ -38,6 +37,7 @@ import GHC.Types.Name.Occurrence (OccName)
    38 37
     import GHC.Types.Tickish (BreakTickIndex, BreakpointId (..))
    
    39 38
     import GHC.Types.SptEntry (SptEntry (..))
    
    40 39
     import GHC.Types.Error (MessageClass (MCDump))
    
    40
    +import GHC.Utils.Panic.Plain (assert)
    
    41 41
     import GHC.Utils.Logger (Logger, logMsg)
    
    42 42
     import GHC.Utils.Binary (BinSrcSpan (..))
    
    43 43
     import GHC.Utils.Encoding.UTF8 (utf8DecodeShortByteString, utf8DecodeByteString)