Ignore:
Timestamp:
Aug 3, 2007, 11:53:50 PM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler32/Compile_Statement.cpp

    r260 r261  
    279279
    280280int GetLabelAddress(char *LabelName,int LineNum){
    281     extern Labels labels;
    282 
    283281    if(LabelName){
    284         BOOST_FOREACH( const Label &label, labels )
     282        BOOST_FOREACH( const GotoLabel &label, compiler.codeGenerator.gotoLabels )
    285283        {
    286284            if( label.name.size() > 0 )
     
    294292    }
    295293    else{
    296         BOOST_FOREACH( const Label &label, labels )
     294        BOOST_FOREACH( const GotoLabel &label, compiler.codeGenerator.gotoLabels )
    297295        {
    298296            if( label.name.size() == 0 )
Note: See TracChangeset for help on using the changeset viewer.