Changeset 275 in dev for trunk/abdev/BasicCompiler_Common/src
- Timestamp:
- Aug 11, 2007, 4:23:18 PM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler_Common/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/Meta.cpp
r273 r275 84 84 { 85 85 pVar->isTargetObjectModule = false; 86 this->globalVars. push_back( pVar );86 this->globalVars.Add( pVar ); 87 87 } 88 88 meta.globalVars.PullOutAll(); -
trunk/abdev/BasicCompiler_Common/src/Variable.cpp
r273 r275 74 74 } 75 75 76 void Variables::Add( Variable *pVar , bool isInitArea)76 void Variables::Add( Variable *pVar ) 77 77 { 78 78 int alignment = 0; … … 81 81 } 82 82 83 if( isInitArea){83 if( pVar->HasInitData() ){ 84 84 //初期バッファがあるとき 85 85
Note:
See TracChangeset
for help on using the changeset viewer.