[Git][ghc/ghc][wip/andreask/spec_tyfams] Disable trace for ci checks

Andreas Klebinger pushed to branch wip/andreask/spec_tyfams at Glasgow Haskell Compiler / GHC Commits: 701de524 by Andreas Klebinger at 2025-04-26T12:47:50+02:00 Disable trace for ci checks - - - - - 1 changed file: - compiler/GHC/Core/Opt/Specialise.hs Changes: ===================================== compiler/GHC/Core/Opt/Specialise.hs ===================================== @@ -68,6 +68,7 @@ import Data.List.NonEmpty ( NonEmpty (..) ) import GHC.Core.Subst (substTickish) import GHC.Core.TyCon (tyConClass_maybe) import GHC.Core.DataCon (dataConTyCon) +import Control.Monad {- ************************************************************************ @@ -1704,7 +1705,7 @@ specCalls spec_imp env existing_rules calls_for_me fn rhs , rule_bndrs, rule_lhs_args , spec_bndrs1, dx_binds, spec_args) <- specHeader env rhs_bndrs all_call_args - ; pprTrace "spec_call" (vcat + ; when False $ pprTrace "spec_call" (vcat [ text "fun: " <+> ppr fn , text "call info: " <+> ppr _ci , text "useful: " <+> ppr useful View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/701de52480878d9ceaeb4ee8a692b50a... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/701de52480878d9ceaeb4ee8a692b50a... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Andreas Klebinger (@AndreasK)