[project @ 2005-10-25 15:04:58 by simonmar]
authorsimonmar <unknown>
Tue, 25 Oct 2005 15:04:58 +0000 (15:04 +0000)
committersimonmar <unknown>
Tue, 25 Oct 2005 15:04:58 +0000 (15:04 +0000)
add missing boot files

ghc/compiler/main/ErrUtils.hi-boot-6 [new file with mode: 0644]
ghc/compiler/main/ErrUtils.lhs-boot [new file with mode: 0644]

diff --git a/ghc/compiler/main/ErrUtils.hi-boot-6 b/ghc/compiler/main/ErrUtils.hi-boot-6
new file mode 100644 (file)
index 0000000..fd98ca3
--- /dev/null
@@ -0,0 +1,11 @@
+module ErrUtils where
+
+data Severity
+  = SevInfo
+  | SevWarning
+  | SevError
+  | SevFatal
+
+type Message = Outputable.SDoc
+
+mkLocMessage :: SrcLoc.SrcSpan -> Message -> Message
diff --git a/ghc/compiler/main/ErrUtils.lhs-boot b/ghc/compiler/main/ErrUtils.lhs-boot
new file mode 100644 (file)
index 0000000..77d6cfd
--- /dev/null
@@ -0,0 +1,16 @@
+\begin{code}
+module ErrUtils where
+
+import Outputable (SDoc)
+import SrcLoc (SrcSpan)
+
+data Severity
+  = SevInfo
+  | SevWarning
+  | SevError
+  | SevFatal
+
+type Message = SDoc
+
+mkLocMessage :: SrcSpan -> Message -> Message
+\end{code}