Skip to content

Commit

Permalink
Wibbles (merg-os) to ticky-ticky
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Peyton Jones committed Jun 6, 2013
1 parent 507c897 commit 6265312
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions compiler/codeGen/StgCmmBind.hs
Expand Up @@ -423,7 +423,7 @@ cgRhsStdThunk bndr lf_info payload
-- ; (use_cc, blame_cc) <- chooseDynCostCentres cc [{- no args-}] body
; let use_cc = curCCS; blame_cc = curCCS

; tickyEnterStdThunk
; tickyEnterStdThunk closure_info

-- BUILD THE OBJECT
; let info_tbl = mkCmmInfo closure_info
Expand Down Expand Up @@ -581,7 +581,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
do { tickyEnterThunk cl_info
; enterCostCentreThunk (CmmReg nodeReg)
; let lf_info = closureLFInfo cl_info
; fv_bindings <- mapM bind_fv fv_details
Expand Down
2 changes: 1 addition & 1 deletion compiler/codeGen/StgCmmTicky.hs
Expand Up @@ -255,7 +255,7 @@ tickyEnterThunk cl_info
| otherwise = if updatable then fsLit "ENT_DYN_THK_SINGLE_ctr"
else fsLit "ENT_DYN_THK_MANY_ctr"

tickyEnterStdThunk :: FCode ()
tickyEnterStdThunk :: ClosureInfo -> FCode ()
tickyEnterStdThunk = tickyEnterThunk

tickyBlackHole :: Bool{-updatable-} -> FCode ()
Expand Down

0 comments on commit 6265312

Please sign in to comment.