예제 #1
0
void ObjEmitNumericLabel( uint_32 label_num ) {
//*********************************************
// Stacks up the numeric label in the list for ObjEmitData to emit

    owl_sym_type        type;
    owl_section_type    section_type;

    section_type =  OWLTellSectionType( CurrentSection );
    if( section_type & OWL_SEC_ATTR_CODE ) {
        type = OWL_TYPE_FUNCTION;
    } else {
        type = OWL_TYPE_OBJECT;
    }
    doStackNumericLabel( label_num, type, OWL_SYM_STATIC );
}
예제 #2
0
extern void ObjEmitNumericLabel( uint_32 label_num ) {
//****************************************************

    doStackNumericLabel( label_num );
}