Changeset 393 in dev for trunk/abdev/BasicCompiler_Common/src
- Timestamp:
- Feb 24, 2008, 6:59:33 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/Linker.cpp
r370 r393 264 264 if( pUserProc->GetNativeCode().GetSize() > 0 ) 265 265 { 266 pUserProc->SetBeginOpAddress( nativeCode.GetSize() ); 267 266 // 関数の開始位置(コードセクションからのオフセット) 267 int beginCodePos = nativeCode.GetSize(); 268 269 // コードセクションに関数のネイティブコードを追加 268 270 nativeCode.PutEx( pUserProc->GetNativeCode() ); 269 271 270 pUserProc->SetEndOpAddress( nativeCode.GetSize() ); 272 // 関数の終了位置(コードセクションからのオフセット) 273 int endCodePos = nativeCode.GetSize(); 274 275 // コードセクション内の関数の範囲を設定 276 pUserProc->SetBeginOpAddress( beginCodePos ); 277 pUserProc->SetEndOpAddress( endCodePos ); 271 278 } 272 279 }
Note:
See TracChangeset
for help on using the changeset viewer.