Ignore:
Timestamp:
Jul 21, 2007, 4:46:33 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

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

    r206 r224  
    600600        }
    601601
    602         i2 = compiler.GetNativeCode().GetDataTable().AddBinary( binary, num * tempBaseType.GetSize() );
     602        i2 = compiler.GetDataTable().AddBinary( binary, num * tempBaseType.GetSize() );
    603603
    604604        //mov reg,i2
     
    793793                    bLiteralCalculation=0;
    794794
    795                     i2 = compiler.GetNativeCode().GetDataTable().AddString( term, i3 );
     795                    i2 = compiler.GetDataTable().AddString( term, i3 );
    796796
    797797                    //mov reg,i2
     
    978978                        }
    979979                        else{
    980                             i3 = compiler.GetNativeCode().GetDataTable().Add( i64data );
     980                            i3 = compiler.GetDataTable().Add( i64data );
    981981
    982982                            //movlpd xmm_reg,qword ptr[data table offset]
     
    10071007                        }
    10081008                        else{
    1009                             i3=compiler.GetNativeCode().GetDataTable().Add( i32data );
     1009                            i3=compiler.GetDataTable().Add( i32data );
    10101010
    10111011                            //movss xmm_reg,dword ptr[data table offset]
     
    11461146
    11471147            if(resultType.IsDouble()){
    1148                 i3 = compiler.GetNativeCode().GetDataTable().Add( i64data );
     1148                i3 = compiler.GetDataTable().Add( i64data );
    11491149
    11501150                //movlpd xmm_reg,qword ptr[data table offset]
     
    11661166                memcpy(&i32data,&flt,sizeof(long));
    11671167
    1168                 i3 = compiler.GetNativeCode().GetDataTable().Add( i32data );
     1168                i3 = compiler.GetDataTable().Add( i32data );
    11691169
    11701170                //movss xmm_reg,dword ptr[data table offset]
Note: See TracChangeset for help on using the changeset viewer.