Changeset 226 in dev for trunk/abdev/BasicCompiler64/increment.cpp
- Timestamp:
- Jul 22, 2007, 4:58:47 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/increment.cpp
r206 r226 1 1 #include "stdafx.h" 2 3 #include <Compiler.h> 2 4 3 5 #include "../BasicCompiler_Common/common.h" … … 47 49 if(idCalc==CALC_ADDITION){ 48 50 //インクリメント 49 op_inc(REG_RAX);51 compiler.codeGenerator.op_inc(REG_RAX); 50 52 } 51 53 else if(idCalc==CALC_SUBTRACTION){ 52 54 //デクリメント 53 op_dec(REG_RAX);55 compiler.codeGenerator.op_dec(REG_RAX); 54 56 } 55 57 }
Note:
See TracChangeset
for help on using the changeset viewer.