예제 #1
0
void CondInfoPop(               // POP COND_INFO STACK
    void )
{
#ifndef NDEBUG
    COND_STK* stk = PstkPopElement( &stack_cond_blks );
    _Dump( stk, "POP" );
#else
    PstkPopElement( &stack_cond_blks );
#endif
}
예제 #2
0
void CondInfoPop(               // POP COND_INFO STACK
    void )
{
    COND_STK* stk = PstkPopElement( &stack_cond_blks );
    stk = stk;
    _Dump( stk, "POP" );
}
예제 #3
0
static void cgBackStatHandlesFree(     // FREE STATIC HANDLES
    void )
{
    SYMBOL top;                 // - addr( symbol to be freed )

    for(;;) {
        top = PstkPopElement( &nonFileScopeSyms );
        if( top == NULL ) break;
        CgBackFreeHandle( top );
    }
}