Ignore:
Timestamp:
Mar 23, 2008, 10:43:50 AM (16 years ago)
Author:
dai_9181
Message:

[459]を64bit版にもマージ。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler64/MakePeHdr.cpp

    r452 r460  
    9191    extern HWND hOwnerEditor;
    9292    extern HANDLE hHeap;
    93     extern BOOL bDebugCompile;
    9493    extern DWORD ImageBase;
    9594    extern int obp_AllocSize;
     
    119118    //////////////////
    120119    // データテーブル
    121     if(bDebugCompile){
     120    if( compiler.IsDebug() )
     121    {
    122122        compiler.GetObjectModule().dataTable.Add( (long)0x00000002 );
    123123    }
     
    360360            compiler.codeGenerator.op_sub_RV( sizeof(_int64), REG_RSP, 0x108 );
    361361
    362             if(bDebugCompile){
     362            if( compiler.IsDebug() )
     363            {
    363364                //デバッグ用の変数を定義
    364365                DebugVariable();
     
    831832    CDebugSection *pobj_DebugSection;
    832833    pobj_DebugSection=new CDebugSection();
    833     extern BOOL bDebugCompile;
    834834    extern BOOL bError;
    835     if(bDebugCompile&&bError==0){
     835    if( compiler.IsDebug() && bError == 0 )
     836    {
    836837        CompileMessage( "デバッグ情報を生成しています。" );
    837838
Note: See TracChangeset for help on using the changeset viewer.