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/BasicCompiler_Common/Compile.cpp

    r260 r261  
    1919
    2020#include <Exception.h>
    21 
    22 //ラベルアドレス
    23 Labels labels;
    2421
    2522//グローバル変数初期バッファ
     
    122119        //Goto先ラベル
    123120        extern int obp;
    124         labels.push_back( Label( Command + 1, obp ) );
     121        compiler.codeGenerator.gotoLabels.push_back( GotoLabel( Command + 1, obp ) );
    125122
    126123        //書き込みスケジュール
     
    534531                //Goto先ラベル
    535532                extern int obp;
    536                 labels.push_back( Label( (long)i3, obp ) );
     533                compiler.codeGenerator.gotoLabels.push_back( GotoLabel( (long)i3, obp ) );
    537534
    538535                //書き込みスケジュール
Note: See TracChangeset for help on using the changeset viewer.