source:
dev/trunk/abdev/BasicCompiler_Common/src/ObjectModule.cpp@
276
| Last change on this file since 276 was 276, checked in by , 18 years ago | |
|---|---|
| File size: 424 bytes | |
| Line | |
|---|---|
| 1 | #include "stdafx.h" |
| 2 | |
| 3 | #include <Compiler.h> |
| 4 | |
| 5 | void ObjectModule::StaticLink( ObjectModule &objectModule ) |
| 6 | { |
| 7 | // メタ情報を結合 |
| 8 | meta.StaticLink( objectModule.meta, dataTable.GetSize() ); |
| 9 | |
| 10 | // ネイティブコードを結合 |
| 11 | globalNativeCode.Put( objectModule.globalNativeCode ); |
| 12 | globalNativeCode.ResetDataSectionBaseOffset( dataTable.GetSize() ); |
| 13 | |
| 14 | // データテーブルを結合 |
| 15 | dataTable.Add( objectModule.dataTable ); |
| 16 | } |
Note:
See TracBrowser
for help on using the repository browser.
