Remove CPP from nativeGen/RegAlloc/Graph/TrivColorable.hs
[ghc-hetmet.git] / compiler / main / ErrUtils.lhs-boot
1 \begin{code}
2 module ErrUtils where
3
4 import Outputable (SDoc)
5 import SrcLoc (SrcSpan)
6
7 data Severity
8   = SevOutput
9   | SevInfo
10   | SevWarning
11   | SevError
12   | SevFatal
13
14 type Message = SDoc
15
16 mkLocMessage :: SrcSpan -> Message -> Message
17 \end{code}