/*
                            P A T C H T R U . C
*/

#include "iccomp.h"

void patchtrue(e)
    ESTRUC_
        *e;
{                                           /* expand the truelist */
    e->truelist = xrealloc(e->truelist, (e->truelen + 1) * sizeof(unsigned));

                                            /* room for the jump-backpatch */
    e->code = xrealloc(e->code, e->codelen += sizeof(INT16));
    e->truelist[e->truelen++] = e->codelen;   /* store jumpstart location */
}