Example #1
0
static void cgrfPruneEdge(      // PRUNE AN EDGE
    CALLGRAPH *ctl,             // - control information
    CALLEDGE *edge )            // - edge to be pruned
{
    ctl = ctl;
    changeNodeReference( -edge->refs, -edge->addrs, edge );
}
Example #2
0
static void cgrfPruneEdge(      // PRUNE AN EDGE
    CALLGRAPH *ctl,             // - control information
    CALLEDGE *edge )            // - edge to be pruned
{
    /* unused parameters */ (void)ctl;

    changeNodeReference( -(int)edge->refs, -(int)edge->addrs, edge );
}
Example #3
0
static void changeCtlCounts(    // UPDATE COUNTS FROM CONTROL INFORMATION
    CALLGRAPH *ctl,             // - control information
    CALLEDGE *edge )            // - edge to be initialized
{
    changeNodeReference( ctl->incr_refs, ctl->incr_addrs, edge );
}