Ignore:
Timestamp:
Aug 29, 2007, 9:05:22 AM (17 years ago)
Author:
dai_9181
Message:

静的リンクライブラリにより、複数のグローバル領域が存在することになったのでそれぞれを関数ベースに分けた

File:
1 edited

Legend:

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

    r262 r308  
    128128        }
    129129
    130         pNativeCode->Put( disp, scheduleType );
     130        pNativeCode->PutEx( disp, scheduleType );
    131131    }
    132132
     
    176176
    177177    //即値
    178     pNativeCode->Put( i32data, scheduleType );
     178    pNativeCode->PutEx( i32data, scheduleType );
    179179}
    180180void CodeGenerator::op_mov_RV64(int reg,_int64 i64data){
     
    247247            pPertialSchedule = pertialSchedules.back();
    248248        }
    249         pNativeCode->Put( offset, scheduleType );
     249        pNativeCode->PutEx( offset, scheduleType );
    250250    }
    251251    else{
     
    320320            pPertialSchedule = pertialSchedules.back();
    321321        }
    322         pNativeCode->Put( offset, scheduleType );
     322        pNativeCode->PutEx( offset, scheduleType );
    323323    }
    324324    else{
     
    645645        pPertialSchedule = pertialSchedules.back();
    646646    }
    647     pNativeCode->Put( offset, scheduleType );
     647    pNativeCode->PutEx( offset, scheduleType );
    648648
    649649    return pPertialSchedule;
Note: See TracChangeset for help on using the changeset viewer.