[commit: ghc] wip/T10613: Ticky: Do not count every entry twice (a29db5b)
git at git.haskell.org
git at git.haskell.org
Mon Mar 21 15:13:28 UTC 2016
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/T10613
Link : http://ghc.haskell.org/trac/ghc/changeset/a29db5bf1a2971c343b10f3fce90dea5ab440e29/ghc
>---------------------------------------------------------------
commit a29db5bf1a2971c343b10f3fce90dea5ab440e29
Author: Joachim Breitner <mail at joachim-breitner.de>
Date: Thu Mar 17 17:25:36 2016 +0100
Ticky: Do not count every entry twice
(likely introduced by 99d4e5b4a0bd32813ff8c74e91d2dcf6b3555176, possibly
due to a merge mistake).
>---------------------------------------------------------------
a29db5bf1a2971c343b10f3fce90dea5ab440e29
compiler/codeGen/StgCmmBind.hs | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/compiler/codeGen/StgCmmBind.hs b/compiler/codeGen/StgCmmBind.hs
index b265153..eae599c 100644
--- a/compiler/codeGen/StgCmmBind.hs
+++ b/compiler/codeGen/StgCmmBind.hs
@@ -578,8 +578,7 @@ thunkCode cl_info fv_details _cc node arity body
-- that cc of enclosing scope will be recorded
-- in update frame CAF/DICT functions will be
-- subsumed by this enclosing cc
- do { tickyEnterThunk cl_info
- ; enterCostCentreThunk (CmmReg nodeReg)
+ do { enterCostCentreThunk (CmmReg nodeReg)
; let lf_info = closureLFInfo cl_info
; fv_bindings <- mapM bind_fv fv_details
; load_fvs node lf_info fv_bindings
More information about the ghc-commits
mailing list