summaryrefslogtreecommitdiff
path: root/compiler/GHC/Core/Unfold
diff options
context:
space:
mode:
authorSimon Peyton Jones <simonpj@microsoft.com>2021-06-24 11:25:40 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-07-28 13:19:06 -0400
commita67e681496ed662bfaabeccb8c584adcb8a97971 (patch)
treec5140d87c430dc5f3c4a247175e5131a75a730c7 /compiler/GHC/Core/Unfold
parent25ca0b5aef54281d161288d9d951a6325d0ab53f (diff)
downloadhaskell-a67e681496ed662bfaabeccb8c584adcb8a97971.tar.gz
White space, spelling, and a tiny refactor
No change in behaviour
Diffstat (limited to 'compiler/GHC/Core/Unfold')
-rw-r--r--compiler/GHC/Core/Unfold/Make.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/GHC/Core/Unfold/Make.hs b/compiler/GHC/Core/Unfold/Make.hs
index 378d5a6131..71981061ef 100644
--- a/compiler/GHC/Core/Unfold/Make.hs
+++ b/compiler/GHC/Core/Unfold/Make.hs
@@ -169,14 +169,14 @@ specUnfolding opts spec_bndrs spec_app rule_lhs_args
, uf_is_top = top_lvl
, uf_guidance = old_guidance })
| isStableSource src -- See Note [Specialising unfoldings]
- , UnfWhen { ug_arity = old_arity } <- old_guidance
+ , UnfWhen { ug_arity = old_arity } <- old_guidance
= mkCoreUnfolding src top_lvl new_tmpl
(old_guidance { ug_arity = old_arity - arity_decrease })
where
new_tmpl = simpleOptExpr opts $
- mkLams spec_bndrs $
+ mkLams spec_bndrs $
spec_app tmpl -- The beta-redexes created by spec_app
- -- will besimplified away by simplOptExpr
+ -- will be simplified away by simplOptExpr
arity_decrease = count isValArg rule_lhs_args - count isId spec_bndrs