Ignore:
Timestamp:
Jun 24, 2007, 6:50:40 PM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

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

    r75 r183  
     1#include <Compiler.h>
     2
    13#include "../BasicCompiler_Common/common.h"
    24#include "Opcode.h"
     
    452454        double dbl;
    453455        dbl=-1;
    454         i32data = dataTable.Add( dbl );
     456        i32data = Compiler::GetNativeCode().GetDataTable().Add( dbl );
    455457
    456458        //mulsd xmm_reg,qword ptr[data table offset]   ※data = -1
     
    474476        float flt;
    475477        flt=-1;
    476         i32data = dataTable.Add( flt );
     478        i32data = Compiler::GetNativeCode().GetDataTable().Add( flt );
    477479
    478480        //mulss xmm_reg,dword ptr[data table offset]   ※data = -1
Note: See TracChangeset for help on using the changeset viewer.