summaryrefslogtreecommitdiff
path: root/ghc/compiler/utils/UniqFM.lhs
diff options
context:
space:
mode:
authorsimonmar <unknown>2002-08-29 15:44:23 +0000
committersimonmar <unknown>2002-08-29 15:44:23 +0000
commitce9687a5f450014c5596b32de8e8a7b99b6389e8 (patch)
tree718993a94d5e2b03bae392f4b3b4710814c3c4d8 /ghc/compiler/utils/UniqFM.lhs
parent4a851c8281491a26ce130e6ce4496042e3feb42b (diff)
downloadhaskell-ce9687a5f450014c5596b32de8e8a7b99b6389e8.tar.gz
[project @ 2002-08-29 15:44:11 by simonmar]
Housekeeping: - The main goal is to remove dependencies on hslibs for a bootstrapped compiler, leaving only a requirement that the packages base, haskell98 and readline are built in stage 1 in order to bootstrap. We're almost there: Posix is still required for signal handling, but all other dependencies on hslibs are now gone. Uses of Addr and ByteArray/MutableByteArray array are all gone from the compiler. PrimPacked defines the Ptr type for GHC 4.08 (which didn't have it), and it defines simple BA and MBA types to replace uses of ByteArray and MutableByteArray respectively. - Clean up import lists. HsVersions.h now defines macros for some modules which have moved between GHC versions. eg. one now imports 'GLAEXTS' to get at unboxed types and primops in the compiler. Many import lists have been sorted as per the recommendations in the new style guidelines in the commentary. I've built the compiler with GHC 4.08.2, 5.00.2, 5.02.3, 5.04 and itself, and everything still works here. Doubtless I've got something wrong, though.
Diffstat (limited to 'ghc/compiler/utils/UniqFM.lhs')
-rw-r--r--ghc/compiler/utils/UniqFM.lhs3
1 files changed, 2 insertions, 1 deletions
diff --git a/ghc/compiler/utils/UniqFM.lhs b/ghc/compiler/utils/UniqFM.lhs
index 7b27322dfd..6aa75b9dc9 100644
--- a/ghc/compiler/utils/UniqFM.lhs
+++ b/ghc/compiler/utils/UniqFM.lhs
@@ -50,9 +50,10 @@ import {-# SOURCE #-} Name ( Name )
import Unique ( Uniquable(..), Unique, getKey, mkUniqueGrimily )
import Panic
-import GlaExts -- Lots of Int# operations
import FastTypes
import Outputable
+
+import GLAEXTS -- Lots of Int# operations
\end{code}
%************************************************************************