diff options
author | Ben.Lippmeier@anu.edu.au <unknown> | 2009-11-18 11:05:25 +0000 |
---|---|---|
committer | Ben.Lippmeier@anu.edu.au <unknown> | 2009-11-18 11:05:25 +0000 |
commit | a8d8c534d5363c865ee2c4948ccd52a64a62c55f (patch) | |
tree | 5a524e1ed25d77e09a98e4b089633edfd635e393 /compiler/codeGen | |
parent | f205ce857a8d1cebeffe39233978b2bda9d33572 (diff) | |
download | haskell-a8d8c534d5363c865ee2c4948ccd52a64a62c55f.tar.gz |
Fix warnings about unused imports
Diffstat (limited to 'compiler/codeGen')
-rw-r--r-- | compiler/codeGen/StgCmmCon.hs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/compiler/codeGen/StgCmmCon.hs b/compiler/codeGen/StgCmmCon.hs index 3226f0c111..cebd743e94 100644 --- a/compiler/codeGen/StgCmmCon.hs +++ b/compiler/codeGen/StgCmmCon.hs @@ -39,9 +39,13 @@ import Literal import PrelInfo import Outputable import Util ( lengthIs ) -import StaticFlags ( opt_PIC ) + import Data.Char +#if defined(mingw32_TARGET_OS) +import StaticFlags ( opt_PIC ) +#endif + --------------------------------------------------------------- -- Top-level constructors |