add PIC relocations for x86_64, and use a simpler hack in place of x86_64_high_symbol()
[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   = SevInfo
9   | SevWarning
10   | SevError
11   | SevFatal
12
13 type Message = SDoc
14
15 mkLocMessage :: SrcSpan -> Message -> Message
16 \end{code}