[svn:parrot] r40389 - trunk/src/gc

NotFound at svn.parrot.org NotFound at svn.parrot.org
Sun Aug 2 16:14:45 UTC 2009


Author: NotFound
Date: Sun Aug  2 16:14:45 2009
New Revision: 40389
URL: https://trac.parrot.org/parrot/changeset/40389

Log:
[cage] missing ASSERT_ARGS

Modified:
   trunk/src/gc/mark_sweep.c

Modified: trunk/src/gc/mark_sweep.c
==============================================================================
--- trunk/src/gc/mark_sweep.c	Sun Aug  2 15:20:06 2009	(r40388)
+++ trunk/src/gc/mark_sweep.c	Sun Aug  2 16:14:45 2009	(r40389)
@@ -1256,6 +1256,7 @@
 Parrot_gc_free_attributes_from_pool(PARROT_INTERP, ARGMOD(PMC_Attribute_Pool * pool),
     ARGMOD(void *data))
 {
+    ASSERT_ARGS(Parrot_gc_free_attributes_from_pool)
     PMC_Attribute_Free_List * const item = (PMC_Attribute_Free_List *)data;
     item->next = pool->free_list;
     pool->free_list = item;


More information about the parrot-commits mailing list