Home
last modified time | relevance | path

Searched refs:interestingDict (Results 1 – 1 of 1) sorted by relevance

/dports/lang/ghc/ghc-8.10.7/compiler/specialise/
H A DSpecialise.hs1097 , interestingDict env scrut'
2578 interestingDict :: SpecEnv -> CoreExpr -> Bool
2582 interestingDict env (Var v) = hasSomeUnfolding (idUnfolding v) function
2585 interestingDict _ (Type _) = False function
2586 interestingDict _ (Coercion _) = False function
2587 interestingDict env (App fn (Type _)) = interestingDict env fn function
2588 interestingDict env (App fn (Coercion _)) = interestingDict env fn function
2589 interestingDict env (Tick _ a) = interestingDict env a function
2590 interestingDict env (Cast e _) = interestingDict env e function
2591 interestingDict _ _ = True function
[all …]