From 275725892cc14fea32091b80d17b14c8cbf50e84 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Sat, 7 Sep 2013 14:16:37 -0700 Subject: Record PAP allocation to CCCS. Signed-off-by: Edward Z. Yang --- rts/AutoApply.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'rts') diff --git a/rts/AutoApply.h b/rts/AutoApply.h index c48bdf4701..f64bc6d894 100644 --- a/rts/AutoApply.h +++ b/rts/AutoApply.h @@ -20,6 +20,7 @@ size = SIZEOF_StgPAP + WDS(n); \ HP_CHK_NP_ASSIGN_SP0(size,f); \ TICK_ALLOC_PAP(size, 0); \ + CCCS_ALLOC(size); \ pap = Hp + WDS(1) - size; \ SET_HDR(pap, stg_PAP_info, CCCS); \ StgPAP_arity(pap) = HALF_W_(arity - m); \ @@ -49,6 +50,7 @@ size = SIZEOF_StgPAP + WDS(TO_W_(StgPAP_n_args(pap))) + WDS(n); \ HP_CHK_NP_ASSIGN_SP0(size,f); \ TICK_ALLOC_PAP(size, 0); \ + CCCS_ALLOC(size); \ new_pap = Hp + WDS(1) - size; \ SET_HDR(new_pap, stg_PAP_info, CCCS); \ StgPAP_arity(new_pap) = HALF_W_(arity - m); \ -- cgit v1.2.1