summaryrefslogtreecommitdiff
path: root/rts/sm
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2009-09-28 14:53:49 +0000
committerSimon Marlow <marlowsd@gmail.com>2009-09-28 14:53:49 +0000
commit1a84ec2aeb34eec7117aecc5a450064a9ac1c747 (patch)
treea6d8957d547dedd35f2fdc94c758c4d68302773a /rts/sm
parentf872c90f3bedbc3b909cfc4c37cda0455dee917e (diff)
downloadhaskell-1a84ec2aeb34eec7117aecc5a450064a9ac1c747.tar.gz
remove TICK_GC_WORDS_COPIED, the GC stats give us the same thing
Diffstat (limited to 'rts/sm')
-rw-r--r--rts/sm/Evac.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/rts/sm/Evac.c b/rts/sm/Evac.c
index 6fcafc4c7d..5836210b34 100644
--- a/rts/sm/Evac.c
+++ b/rts/sm/Evac.c
@@ -97,8 +97,6 @@ copy_tag(StgClosure **p, const StgInfoTable *info,
to = alloc_for_copy(size,stp);
- TICK_GC_WORDS_COPIED(size);
-
from = (StgPtr)src;
to[0] = (W_)info;
for (i = 1; i < size; i++) { // unroll for small i
@@ -143,8 +141,6 @@ copy_tag_nolock(StgClosure **p, const StgInfoTable *info,
*p = TAG_CLOSURE(tag,(StgClosure*)to);
src->header.info = (const StgInfoTable *)MK_FORWARDING_PTR(to);
- TICK_GC_WORDS_COPIED(size);
-
from = (StgPtr)src;
to[0] = (W_)info;
for (i = 1; i < size; i++) { // unroll for small i
@@ -195,8 +191,6 @@ spin:
to = alloc_for_copy(size_to_reserve, stp);
*p = (StgClosure *)to;
- TICK_GC_WORDS_COPIED(size_to_copy);
-
from = (StgPtr)src;
to[0] = info;
for (i = 1; i < size_to_copy; i++) { // unroll for small i