Ignore:
Timestamp:
Aug 12, 2007, 1:25:20 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/src/Linker.cpp

    r273 r276  
    110110    }
    111111
    112     nativeCode.Put( masterObjectModule.globalNativeCode, false );
     112    nativeCode.Put( masterObjectModule.globalNativeCode );
    113113
    114114    masterObjectModule.meta.GetUserProcs().Iterator_Reset();
     
    117117        const UserProc *pUserProc = masterObjectModule.meta.GetUserProcs().Iterator_GetNext();
    118118
    119         if( pUserProc->IsUsing() )
     119        if( pUserProc->GetNativeCode().GetSize() > 0 )
    120120        {
    121121            pUserProc->SetBeginOpAddress( nativeCode.GetSize() );
    122122
    123             nativeCode.Put( pUserProc->GetNativeCode(), false );
     123            nativeCode.Put( pUserProc->GetNativeCode() );
    124124
    125125            pUserProc->SetEndOpAddress( nativeCode.GetSize() );
Note: See TracChangeset for help on using the changeset viewer.