[Git][ghc/ghc][wip/spj-try-opt-coercion] Wibble
Simon Peyton Jones pushed to branch wip/spj-try-opt-coercion at Glasgow Haskell Compiler / GHC Commits: 52dbcf4b by Simon Peyton Jones at 2025-12-15T15:44:33+00:00 Wibble - - - - - 1 changed file: - compiler/GHC/Core/Coercion/Opt.hs Changes: ===================================== compiler/GHC/Core/Coercion/Opt.hs ===================================== @@ -174,8 +174,9 @@ optCoercion :: OptCoercionOpts -> Subst -> Coercion -> NormalCo -- *and* optimises it to reduce its size optCoercion opts env co -- Experiment with no optCoercion at all - | False -- optCoercionEnabled opts - = optCoercion' env co + | optCoercionEnabled opts + = if False then optCoercion' env co + else substCo env co {- = pprTrace "optCoercion {" (text "Co:" <> ppr co) $ View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/52dbcf4b15f9dddd06931bae45ee5c5f... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/52dbcf4b15f9dddd06931bae45ee5c5f... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Simon Peyton Jones (@simonpj)