summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsimonmar <unknown>2005-05-17 15:03:38 +0000
committersimonmar <unknown>2005-05-17 15:03:38 +0000
commit869421155f9c1f32e1479a93c03519fc81214ef5 (patch)
tree393ef4dfce8e997de7307f9b50588781fea583a8
parent8197bf923d53271557bb546c1a6d9e54a770a68b (diff)
downloadhaskell-869421155f9c1f32e1479a93c03519fc81214ef5.tar.gz
[project @ 2005-05-17 15:03:38 by simonmar]
more import fixing
-rw-r--r--ghc/compiler/ghci/Linker.lhs3
1 files changed, 1 insertions, 2 deletions
diff --git a/ghc/compiler/ghci/Linker.lhs b/ghc/compiler/ghci/Linker.lhs
index 89c3f4912a..81b512feee 100644
--- a/ghc/compiler/ghci/Linker.lhs
+++ b/ghc/compiler/ghci/Linker.lhs
@@ -29,7 +29,6 @@ import ByteCodeAsm ( CompiledByteCode(..), bcoFreeNames, UnlinkedBCO(..))
import Packages
import DriverPhases ( isObjectFilename, isDynLibFilename )
-import Util ( getFileSuffix )
import Finder ( findModule, findObjectLinkableMaybe, FindResult(..) )
import HscTypes
import Name ( Name, nameModule, isExternalName, isWiredInName )
@@ -41,7 +40,7 @@ import DynFlags ( DynFlags(..), getOpts )
import BasicTypes ( SuccessFlag(..), succeeded, failed )
import Outputable
import Panic ( GhcException(..) )
-import Util ( zipLazy, global, joinFileExt, joinFileName )
+import Util ( zipLazy, global, joinFileExt, joinFileName, suffixOf )
import StaticFlags ( v_Ld_inputs )
import ErrUtils ( debugTraceMsg )