Changeset 436 in dev for trunk/abdev/BasicCompiler_Common/src/CommonCodeGenerator.cpp
- Timestamp:
- Mar 15, 2008, 3:33:36 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/CommonCodeGenerator.cpp
r435 r436 2 2 3 3 #include <CodeGenerator.h> 4 5 #ifdef _AMD64_ 6 #include "../../BasicCompiler64/opcode.h" 7 #else 8 #include "../../BasicCompiler32/opcode.h" 9 #endif 4 10 5 11 … … 313 319 ////////////////////////////////////////////////////// 314 320 315 //mov rcx,reg316 compiler.codeGenerator.op_mov_RR( REG_RCX, reg );317 318 //call _System_AddNeedFreeTempStructure319 extern const UserProc *pSub_System_AddNeedFreeTempStructure;320 compiler.codeGenerator.op_call( pSub_System_AddNeedFreeTempStructure );321 //mov rcx,reg 322 op_mov_RR( REG_RCX, reg ); 323 324 //call _System_AddNeedFreeTempStructure 325 extern const UserProc *pSub_System_AddNeedFreeTempStructure; 326 op_call( pSub_System_AddNeedFreeTempStructure ); 321 327 322 328 /////////////////////////////////////////////
Note:
See TracChangeset
for help on using the changeset viewer.