The R Project SVN R

Rev

Rev 63057 | Rev 63469 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 63057 Rev 63071
Line 725... Line 725...
725
/* Debugging Routines. */
725
/* Debugging Routines. */
726
 
726
 
727
#ifdef DEBUG_GC
727
#ifdef DEBUG_GC
728
static void CheckNodeGeneration(SEXP x, int g)
728
static void CheckNodeGeneration(SEXP x, int g)
729
{
729
{
730
    if (NODE_GENERATION(x) < g) {
730
    if (x && NODE_GENERATION(x) < g) {
731
	REprintf("untraced old-to-new reference\n");
731
	REprintf("untraced old-to-new reference\n");
732
    }
732
    }
733
}
733
}
734
 
734
 
735
static void DEBUG_CHECK_NODE_COUNTS(char *where)
735
static void DEBUG_CHECK_NODE_COUNTS(char *where)