diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-10-11 20:01:10 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-10-11 20:01:10 +0000 |
commit | ab22f4e6456820c1b5169d75f5975a94e61f54ce (patch) | |
tree | 44eb4222120653313776566754c006e1deeb77a3 /compiler/ghci/ByteCodeInstr.lhs | |
parent | 6b4592943b799175dec4549882bbf06fa87a0739 (diff) | |
download | haskell-ab22f4e6456820c1b5169d75f5975a94e61f54ce.tar.gz |
More import tidying and fixing the stage 2 build
Diffstat (limited to 'compiler/ghci/ByteCodeInstr.lhs')
-rw-r--r-- | compiler/ghci/ByteCodeInstr.lhs | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/compiler/ghci/ByteCodeInstr.lhs b/compiler/ghci/ByteCodeInstr.lhs index 7bd4408fff..b76207e2e7 100644 --- a/compiler/ghci/ByteCodeInstr.lhs +++ b/compiler/ghci/ByteCodeInstr.lhs @@ -1,7 +1,7 @@ % -% (c) The University of Glasgow 2000 +% (c) The University of Glasgow 2000-2006 % -\section[ByteCodeInstrs]{Bytecode instruction definitions} +ByteCodeInstrs: Bytecode instruction definitions \begin{code} module ByteCodeInstr ( @@ -12,15 +12,16 @@ module ByteCodeInstr ( #include "../includes/MachDeps.h" import Outputable -import Name ( Name ) -import Id ( Id ) +import Name +import Id import CoreSyn -import PprCore ( pprCoreExpr, pprCoreAlt ) -import Literal ( Literal ) -import DataCon ( DataCon ) -import VarSet ( VarSet ) -import PrimOp ( PrimOp ) -import SMRep ( StgWord, CgRep ) +import PprCore +import Literal +import DataCon +import VarSet +import PrimOp +import SMRep + import GHC.Ptr -- ---------------------------------------------------------------------------- |