diff options
author | Ben.Lippmeier@anu.edu.au <unknown> | 2009-02-16 00:09:45 +0000 |
---|---|---|
committer | Ben.Lippmeier@anu.edu.au <unknown> | 2009-02-16 00:09:45 +0000 |
commit | 547bf6827f1fc3f2fb31bc6323cc0d33b445f32a (patch) | |
tree | 04cc974d7213d7c116cc509efcae4f43530baeac /compiler/nativeGen/SPARC/CodeGen.hs | |
parent | 8b94848bae9cabac968d9c86c36a28d3cc7b6a72 (diff) | |
download | haskell-547bf6827f1fc3f2fb31bc6323cc0d33b445f32a.tar.gz |
SPARC NCG: Reorganise Reg and RegInfo
Diffstat (limited to 'compiler/nativeGen/SPARC/CodeGen.hs')
-rw-r--r-- | compiler/nativeGen/SPARC/CodeGen.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/compiler/nativeGen/SPARC/CodeGen.hs b/compiler/nativeGen/SPARC/CodeGen.hs index d921c12e7a..ff9a8ffc5a 100644 --- a/compiler/nativeGen/SPARC/CodeGen.hs +++ b/compiler/nativeGen/SPARC/CodeGen.hs @@ -20,9 +20,12 @@ where -- NCG stuff: import SPARC.Instr +import SPARC.Stack import SPARC.Cond +import SPARC.Imm +import SPARC.AddrMode import SPARC.Regs -import SPARC.RegInfo +import SPARC.Base import Instruction import Size import Reg |