Changeset 551 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/include
- Timestamp:
- May 5, 2008, 12:39:50 AM (17 years ago)
- Location:
- trunk/ab5.0/abdev/BasicCompiler_Common/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/include/CodeGenerator.h
r524 r551 241 241 } 242 242 243 void NextSourceLine( )244 { 245 pNativeCode->NextSourceLine( );243 void NextSourceLine( int currentSourceIndex ) 244 { 245 pNativeCode->NextSourceLine( currentSourceIndex ); 246 246 } 247 247 … … 266 266 continueCodePositions.pop_back(); 267 267 } 268 268 269 void PutWithSchedule( long l, Schedule::Type scheduleType ); 270 269 271 void ResolveExitSubSchedule(); 270 272 … … 469 471 void PutOld( long l, Schedule::Type scheduleType ) 470 472 { 471 pNativeCode->PutEx( l, scheduleType );473 this->PutWithSchedule( l, scheduleType ); 472 474 } 473 475 const PertialSchedule *PutOld( long l, bool isPertialSchedule ) … … 479 481 pPertialSchedule = pertialSchedules.back(); 480 482 } 481 pNativeCode->Put Ex( l, Schedule::None);483 pNativeCode->Put( l ); 482 484 return pPertialSchedule; 483 485 } -
trunk/ab5.0/abdev/BasicCompiler_Common/include/NativeCode.h
r550 r551 254 254 return sourceLines; 255 255 } 256 void NextSourceLine( );256 void NextSourceLine( int currentSourceIndex ); 257 257 258 258 void ResetDataSectionBaseOffset( long dataSectionBaseOffset );
Note:
See TracChangeset
for help on using the changeset viewer.