summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Tennie <sven.tennie@gmail.com>2023-04-09 15:23:34 +0000
committerSven Tennie <sven.tennie@gmail.com>2023-05-05 19:59:53 +0000
commit56fe2462fc69053a76a17481e5e70db51c3d5b0b (patch)
treec5e1e7ae8b0a8096fc11ea092c6d4bb2ba6936f1
parent1a9170697ef5c77b47b1bfb2d0a1c837e80aa585 (diff)
downloadhaskell-56fe2462fc69053a76a17481e5e70db51c3d5b0b.tar.gz
Fix overloaded naming issues
-rw-r--r--libraries/ghc-heap/GHC/Exts/Stack/Decode.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/ghc-heap/GHC/Exts/Stack/Decode.hs b/libraries/ghc-heap/GHC/Exts/Stack/Decode.hs
index e54510a125..5e3644a361 100644
--- a/libraries/ghc-heap/GHC/Exts/Stack/Decode.hs
+++ b/libraries/ghc-heap/GHC/Exts/Stack/Decode.hs
@@ -23,9 +23,9 @@ import Data.Maybe
import Foreign
import GHC.Exts
import GHC.Exts.Heap.ClosureTypes
-import GHC.Exts.Heap.Closures (Box(..), RetFunType(..), Closure, GenClosure(UnknownTypeWordSizedPrimitive), StackFrame(..), StgStackClosure(..))
+import GHC.Exts.Heap.Closures (RetFunType(..), Closure, GenClosure(UnknownTypeWordSizedPrimitive), StackFrame(..), StgStackClosure(..))
import GHC.Exts.Heap.Constants (wORD_SIZE_IN_BITS)
-import GHC.Exts.Heap
+import GHC.Exts.Heap (Box(..), getBoxedClosureData)
import GHC.Exts.Heap.InfoTable
import GHC.Exts.Stack.Constants
import GHC.IO (IO (..))