summaryrefslogtreecommitdiff
path: root/compiler/nativeGen/RegAlloc/Linear
diff options
context:
space:
mode:
authorsimonpj@microsoft.com <unknown>2009-07-06 11:22:01 +0000
committersimonpj@microsoft.com <unknown>2009-07-06 11:22:01 +0000
commitd436c70d43fb905c63220040168295e473f4b90a (patch)
treece7dd3b7faca1c31e82a3ec4a44fa9a32186c556 /compiler/nativeGen/RegAlloc/Linear
parent0bde11509ca13d4d0914496ee652d7c2b43a0420 (diff)
downloadhaskell-d436c70d43fb905c63220040168295e473f4b90a.tar.gz
Trim unused imports detected by new unused-import code
Diffstat (limited to 'compiler/nativeGen/RegAlloc/Linear')
-rw-r--r--compiler/nativeGen/RegAlloc/Linear/PPC/FreeRegs.hs2
-rw-r--r--compiler/nativeGen/RegAlloc/Linear/SPARC/FreeRegs.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/nativeGen/RegAlloc/Linear/PPC/FreeRegs.hs b/compiler/nativeGen/RegAlloc/Linear/PPC/FreeRegs.hs
index 4310c5e5a1..aa6822c091 100644
--- a/compiler/nativeGen/RegAlloc/Linear/PPC/FreeRegs.hs
+++ b/compiler/nativeGen/RegAlloc/Linear/PPC/FreeRegs.hs
@@ -11,7 +11,7 @@ import Outputable
import Data.Word
import Data.Bits
-import Data.List
+-- import Data.List
-- The PowerPC has 32 integer and 32 floating point registers.
-- This is 32bit PowerPC, so Word64 is inefficient - two Word32s are much
diff --git a/compiler/nativeGen/RegAlloc/Linear/SPARC/FreeRegs.hs b/compiler/nativeGen/RegAlloc/Linear/SPARC/FreeRegs.hs
index d828347433..f48a893c09 100644
--- a/compiler/nativeGen/RegAlloc/Linear/SPARC/FreeRegs.hs
+++ b/compiler/nativeGen/RegAlloc/Linear/SPARC/FreeRegs.hs
@@ -13,7 +13,7 @@ import FastBool
import Data.Word
import Data.Bits
-import Data.List
+-- import Data.List
--------------------------------------------------------------------------------