diff options
author | Manuel M T Chakravarty <chak@cse.unsw.edu.au> | 2006-09-21 21:00:29 +0000 |
---|---|---|
committer | Manuel M T Chakravarty <chak@cse.unsw.edu.au> | 2006-09-21 21:00:29 +0000 |
commit | e56b68fa613a30e8c9287732320087be362345e0 (patch) | |
tree | ee61e6a0dfa3fc1e96df2d26332130c125c2dbeb /compiler/ghci | |
parent | d78d04173296841b5949ebce640f444dcfb026f2 (diff) | |
download | haskell-e56b68fa613a30e8c9287732320087be362345e0.tar.gz |
Fix Linker import when BREAKPOINT is off
Diffstat (limited to 'compiler/ghci')
-rw-r--r-- | compiler/ghci/InteractiveUI.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/ghci/InteractiveUI.hs b/compiler/ghci/InteractiveUI.hs index f7ff7aeb4c..02fc10c767 100644 --- a/compiler/ghci/InteractiveUI.hs +++ b/compiler/ghci/InteractiveUI.hs @@ -26,7 +26,7 @@ import TcType ( tidyTopType ) import qualified Id ( setIdType ) import IdInfo ( GlobalIdDetails(..) ) import Linker ( HValue, extendLinkEnv, withExtendedLinkEnv, - initDynLinker, linkPackages ) + initDynLinker ) import PrelNames ( breakpointJumpName, breakpointCondJumpName ) #endif @@ -56,7 +56,7 @@ import BasicTypes ( failed, successIf ) import Panic ( panic, installSignalHandlers ) import Config import StaticFlags ( opt_IgnoreDotGhci ) -import Linker ( showLinkerState ) +import Linker ( showLinkerState, linkPackages ) import Util ( removeSpaces, handle, global, toArgs, looksLikeModuleName, prefixMatch, sortLe ) |