Changeset 261 in dev for trunk/abdev/BasicCompiler_Common/Compile.cpp
- Timestamp:
- Aug 3, 2007, 11:53:50 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/Compile.cpp
r260 r261 19 19 20 20 #include <Exception.h> 21 22 //ラベルアドレス23 Labels labels;24 21 25 22 //グローバル変数初期バッファ … … 122 119 //Goto先ラベル 123 120 extern int obp; 124 labels.push_back(Label( Command + 1, obp ) );121 compiler.codeGenerator.gotoLabels.push_back( GotoLabel( Command + 1, obp ) ); 125 122 126 123 //書き込みスケジュール … … 534 531 //Goto先ラベル 535 532 extern int obp; 536 labels.push_back(Label( (long)i3, obp ) );533 compiler.codeGenerator.gotoLabels.push_back( GotoLabel( (long)i3, obp ) ); 537 534 538 535 //書き込みスケジュール
Note:
See TracChangeset
for help on using the changeset viewer.