Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Comment out debug code - don't need it for now.
  • Loading branch information
jnthn committed Feb 28, 2012
1 parent 1a15a9a commit 20ef680
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ops/nqp.ops
Expand Up @@ -50,8 +50,8 @@ static void SC_write_barrier_obj(PARROT_INTERP, PMC *obj) {
if (SC_PMC(obj) != comp_sc) {
SC_repossess_object(interp, comp_sc, SC_PMC(obj), obj);
SC_PMC(obj) = comp_sc;
printf("SC OBJECT WRITE BARRIER HIT (%s)\n",
Parrot_str_cstring(interp, VTABLE_name(interp, obj)));
/*printf("SC OBJECT WRITE BARRIER HIT (%s)\n",
Parrot_str_cstring(interp, VTABLE_name(interp, obj)));*/
}
}
}
Expand All @@ -63,8 +63,8 @@ static void SC_write_barrier_st(PARROT_INTERP, STable *st) {
if (st->sc != comp_sc) {
SC_repossess_stable(interp, comp_sc, st->sc, st->stable_pmc);
st->sc = comp_sc;
printf("SC STABLE WRITE BARRIER HIT (%s)\n",
Parrot_str_cstring(interp, VTABLE_name(interp, st->WHAT)));
/*printf("SC STABLE WRITE BARRIER HIT (%s)\n",
Parrot_str_cstring(interp, VTABLE_name(interp, st->WHAT)));*/
}
}
}
Expand Down

0 comments on commit 20ef680

Please sign in to comment.