Changeset 287 in dev for trunk/abdev/BasicCompiler_Common/src/Meta.cpp
- Timestamp:
- Aug 16, 2007, 7:55:02 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/Meta.cpp
r283 r287 90 90 } 91 91 92 bool isResetOffsetAddress = true; 93 if( pVar->HasInitData() ) 94 { 95 // 初期バッファがあるときはデータテーブルオフセットを適用する 96 pVar->SetOffsetAddress( pVar->GetOffsetAddress() + dataSectionBaseOffset ); 97 98 isResetOffsetAddress = false; 99 } 100 92 101 pVar->isTargetObjectModule = false; 93 this->globalVars.Add( pVar );102 this->globalVars.Add( pVar, isResetOffsetAddress ); 94 103 } 95 104 meta.globalVars.PullOutAll();
Note:
See TracChangeset
for help on using the changeset viewer.