Changeset 308 in dev for trunk/abdev/BasicCompiler64/CodeGenerator.cpp
- Timestamp:
- Aug 29, 2007, 9:05:22 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/CodeGenerator.cpp
r262 r308 128 128 } 129 129 130 pNativeCode->Put ( disp, scheduleType );130 pNativeCode->PutEx( disp, scheduleType ); 131 131 } 132 132 … … 176 176 177 177 //即値 178 pNativeCode->Put ( i32data, scheduleType );178 pNativeCode->PutEx( i32data, scheduleType ); 179 179 } 180 180 void CodeGenerator::op_mov_RV64(int reg,_int64 i64data){ … … 247 247 pPertialSchedule = pertialSchedules.back(); 248 248 } 249 pNativeCode->Put ( offset, scheduleType );249 pNativeCode->PutEx( offset, scheduleType ); 250 250 } 251 251 else{ … … 320 320 pPertialSchedule = pertialSchedules.back(); 321 321 } 322 pNativeCode->Put ( offset, scheduleType );322 pNativeCode->PutEx( offset, scheduleType ); 323 323 } 324 324 else{ … … 645 645 pPertialSchedule = pertialSchedules.back(); 646 646 } 647 pNativeCode->Put ( offset, scheduleType );647 pNativeCode->PutEx( offset, scheduleType ); 648 648 649 649 return pPertialSchedule;
Note:
See TracChangeset
for help on using the changeset viewer.