Ignore:
Timestamp:
Jul 22, 2007, 4:58:47 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler64/increment.cpp

    r206 r226  
    11#include "stdafx.h"
     2
     3#include <Compiler.h>
    24
    35#include "../BasicCompiler_Common/common.h"
     
    4749            if(idCalc==CALC_ADDITION){
    4850                //インクリメント
    49                 op_inc(REG_RAX);
     51                compiler.codeGenerator.op_inc(REG_RAX);
    5052            }
    5153            else if(idCalc==CALC_SUBTRACTION){
    5254                //デクリメント
    53                 op_dec(REG_RAX);
     55                compiler.codeGenerator.op_dec(REG_RAX);
    5456            }
    5557    }
Note: See TracChangeset for help on using the changeset viewer.