diff options
author | Ben Gamari <ben@smart-cactus.org> | 2021-09-24 15:56:21 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2021-09-24 16:12:40 -0400 |
commit | d02c95f4209d4fd4b1e22d4025294685f9418aa7 (patch) | |
tree | ee2352350b497d69a7e14f174c37c02aea9ab311 /compiler/GHC/HsToCore/Coverage.hs | |
parent | a753a16c6b3158f6e07245d0421667bdef91a25e (diff) | |
download | haskell-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.hs | 2 |
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), |