Ignore:
Timestamp:
May 10, 2008, 3:09:26 PM (16 years ago)
Author:
dai_9181
Message:

[585][586]をリバース。NativeCodeクラスとMetaクラスは依存関係があるので分離しない方針とする。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/compiler_x64/Compile_Statement.cpp

    r585 r587  
    132132    if(resultType.IsDouble()){
    133133        double dbl=0;
    134         offset=compiler.GetObjectModule().nativeSection.dataTable.Add( dbl );
     134        offset=compiler.GetObjectModule().dataTable.Add( dbl );
    135135
    136136        //comisd xmm0,qword ptr[data table offset]
     
    149149    else if(resultType.IsSingle()){
    150150        float flt=0;
    151         offset=compiler.GetObjectModule().nativeSection.dataTable.Add( flt );
     151        offset=compiler.GetObjectModule().dataTable.Add( flt );
    152152
    153153        //comiss xmm0,dword ptr[data table offset]
Note: See TracChangeset for help on using the changeset viewer.