Changeset 357 in dev for trunk/abdev/BasicCompiler_Common/src/CommonCodeGenerator.cpp
- Timestamp:
- Nov 5, 2007, 3:26:20 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/CommonCodeGenerator.cpp
r276 r357 20 20 } 21 21 22 void CodeGenerator::opfix( const PertialSchedule *pPertialSchedule, longnewValue )22 void CodeGenerator::opfix( const PertialSchedule *pPertialSchedule, _int64 newValue ) 23 23 { 24 24 bool isSuccessful = false; … … 41 41 else if( pPertialSchedule->GetTypeSize() == sizeof(long) ) 42 42 { 43 pNativeCode->Overwrite( pPertialSchedule->GetCodePos(), static_cast<long>(newValue) ); 44 } 45 else if( pPertialSchedule->GetTypeSize() == sizeof(_int64) ) 46 { 43 47 pNativeCode->Overwrite( pPertialSchedule->GetCodePos(), newValue ); 44 48 }
Note:
See TracChangeset
for help on using the changeset viewer.