From a8d8c534d5363c865ee2c4948ccd52a64a62c55f Mon Sep 17 00:00:00 2001 From: "Ben.Lippmeier@anu.edu.au" Date: Wed, 18 Nov 2009 11:05:25 +0000 Subject: [PATCH] Fix warnings about unused imports --- compiler/codeGen/StgCmmCon.hs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/compiler/codeGen/StgCmmCon.hs b/compiler/codeGen/StgCmmCon.hs index 3226f0c..cebd743 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 -- 1.7.10.4