summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÖmer Sinan Ağacan <omeragacan@gmail.com>2019-08-16 10:23:59 +0300
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-08-18 05:17:20 -0400
commit1230d6f92440818241f3ae776fc51742c7395bb4 (patch)
treec14ad7ce45051ef9ef976889ae8d63c089797ea0
parentac73c1b13a4fef725f643e6985cdcb6f6fc1bef5 (diff)
downloadhaskell-1230d6f92440818241f3ae776fc51742c7395bb4.tar.gz
Typo fix in CoreToStg
-rw-r--r--compiler/stgSyn/CoreToStg.hs10
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler/stgSyn/CoreToStg.hs b/compiler/stgSyn/CoreToStg.hs
index f8d489b071..d548616dde 100644
--- a/compiler/stgSyn/CoreToStg.hs
+++ b/compiler/stgSyn/CoreToStg.hs
@@ -268,7 +268,7 @@ coreTopBindToStg dflags this_mod env ccs (NonRec id rhs)
bind = StgTopLifted $ StgNonRec id stg_rhs
in
- assertConsistentCaInfo dflags id bind (ppr bind)
+ assertConsistentCafInfo dflags id bind (ppr bind)
-- NB: previously the assertion printed 'rhs' and 'bind'
-- as well as 'id', but that led to a black hole
-- where printing the assertion error tripped the
@@ -296,17 +296,17 @@ coreTopBindToStg dflags this_mod env ccs (Rec pairs)
bind = StgTopLifted $ StgRec (zip binders stg_rhss)
in
- assertConsistentCaInfo dflags (head binders) bind (ppr binders)
+ assertConsistentCafInfo dflags (head binders) bind (ppr binders)
(env', ccs', bind)
-- | CAF consistency issues will generally result in segfaults and are quite
-- difficult to debug (see #16846). We enable checking of the
-- 'consistentCafInfo' invariant with @-dstg-lint@ to increase the chance that
-- we catch these issues.
-assertConsistentCaInfo :: DynFlags -> Id -> StgTopBinding -> SDoc -> a -> a
-assertConsistentCaInfo dflags id bind err_doc result
+assertConsistentCafInfo :: DynFlags -> Id -> StgTopBinding -> SDoc -> a -> a
+assertConsistentCafInfo dflags id bind err_doc result
| gopt Opt_DoStgLinting dflags || debugIsOn
- , not $ consistentCafInfo id bind = pprPanic "assertConsistentCaInfo" err_doc
+ , not $ consistentCafInfo id bind = pprPanic "assertConsistentCafInfo" err_doc
| otherwise = result
-- Assertion helper: this checks that the CafInfo on the Id matches