summaryrefslogtreecommitdiff
path: root/compiler/GHC/HsToCore/Coverage.hs
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2021-09-24 15:56:21 -0400
committerBen Gamari <ben@smart-cactus.org>2021-09-24 16:12:40 -0400
commitd02c95f4209d4fd4b1e22d4025294685f9418aa7 (patch)
treeee2352350b497d69a7e14f174c37c02aea9ab311 /compiler/GHC/HsToCore/Coverage.hs
parenta753a16c6b3158f6e07245d0421667bdef91a25e (diff)
downloadhaskell-wip/drop-eltsUFM.tar.gz
compiler: occEnvElts -> nonDetOccEnvEltswip/drop-eltsUFM
Diffstat (limited to 'compiler/GHC/HsToCore/Coverage.hs')
-rw-r--r--compiler/GHC/HsToCore/Coverage.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/HsToCore/Coverage.hs b/compiler/GHC/HsToCore/Coverage.hs
index a6b9944292..4320847663 100644
--- a/compiler/GHC/HsToCore/Coverage.hs
+++ b/compiler/GHC/HsToCore/Coverage.hs
@@ -1219,7 +1219,7 @@ mkTickish :: BoxLabel -> Bool -> Bool -> SrcSpan -> OccEnv Id -> [String]
-> TM CoreTickish
mkTickish boxLabel countEntries topOnly pos fvs decl_path = do
- let ids = filter (not . isUnliftedType . idType) $ occEnvElts fvs
+ let ids = filter (not . isUnliftedType . idType) $ nonDetOccEnvElts fvs
-- unlifted types cause two problems here:
-- * we can't bind them at the GHCi prompt
-- (bindLocalsAtBreakpoint already filters them out),