summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Peyton Jones <simonpj@microsoft.com>2021-11-03 11:07:01 +0000
committerSimon Peyton Jones <simonpj@microsoft.com>2021-11-03 11:07:01 +0000
commit35c10f0f1885a047f2b3f6fcbf36ff9e057a3fc4 (patch)
tree103b938bf68033aaa75c4c71de8ba3dcf7c3d121
parenta7e1be3d84d2b7d0515f909175cdfa5dcf0dc55c (diff)
downloadhaskell-wip/T20606.tar.gz
Make expand_syn a NOINLINE functionwip/T20606
That's what the comments say: see #20606
-rw-r--r--compiler/GHC/Core/Type.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Core/Type.hs b/compiler/GHC/Core/Type.hs
index 16688cf287..31d02bbf24 100644
--- a/compiler/GHC/Core/Type.hs
+++ b/compiler/GHC/Core/Type.hs
@@ -488,7 +488,7 @@ expand_syn arity tvs rhs tys
-- because the function part might well return a
-- partially-applied type constructor; indeed, usually will!
-- We never want to inline this cold-path.
-{-# INLINE expand_syn #-}
+{-# NOINLINE expand_syn #-}
coreFullView :: Type -> Type
-- ^ Iterates 'coreView' until there is no more to synonym to expand.