Added debug statement

This commit is contained in:
ceriel 1988-07-13 13:43:45 +00:00
parent 25f7fe9b77
commit 722bf6de1e

View file

@ -58,7 +58,7 @@ unsigned codegen(codep,ply,toplevel,costlimit,forced) byte *codep; unsigned cost
byte *bp; byte *bp;
int n; int n;
unsigned mindistance,dist; unsigned mindistance,dist;
register i; register int i;
int cindex; int cindex;
int npos,npos2,pos[MAXPOS],pos2[MAXPOS]; int npos,npos2,pos[MAXPOS],pos2[MAXPOS];
#ifdef STONSTACK #ifdef STONSTACK
@ -401,6 +401,7 @@ if (Debug > 1) fprintf(stderr, "cost after coercions: %u\n", t);
rp->r_contents.t_token=0; rp->r_contents.t_token=0;
break; break;
case DO_RREMOVE: /* register remove */ case DO_RREMOVE: /* register remove */
DEBUG("RREMOVE");
getint(nodeno,codep); getint(nodeno,codep);
result=compute(&enodes[nodeno]); result=compute(&enodes[nodeno]);
assert(result.e_typ==EV_REG); assert(result.e_typ==EV_REG);