Ignore:
Timestamp:
Jun 27, 2007, 2:41:17 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

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

    r183 r198  
    136136    if(resultType.IsDouble()){
    137137        double dbl=0;
    138         offset=Compiler::GetNativeCode().GetDataTable().Add( dbl );
     138        offset=compiler.GetNativeCode().GetDataTable().Add( dbl );
    139139
    140140        //comisd xmm0,qword ptr[data table offset]
     
    150150    else if(resultType.IsSingle()){
    151151        float flt=0;
    152         offset=Compiler::GetNativeCode().GetDataTable().Add( flt );
     152        offset=compiler.GetNativeCode().GetDataTable().Add( flt );
    153153
    154154        //comiss xmm0,dword ptr[data table offset]
Note: See TracChangeset for help on using the changeset viewer.