Changeset 76 in dev for BasicCompiler64/MakePeHdr.cpp


Ignore:
Timestamp:
Mar 21, 2007, 9:26:56 PM (17 years ago)
Author:
dai_9181
Message:

TYPEINFO→Typeへのリファクタリングを実施。32bitが未完成。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler64/MakePeHdr.cpp

    r75 r76  
    264264    obj_LexScopes.Init(obp);
    265265
     266
     267    /////////////////////////////////////////////////////////////////
     268    // デバッグコンパイル用のログを生成する
     269    /////////////////////////////////////////////////////////////////
     270#ifdef _DEBUG
     271    {
     272        ofstream ofs("middle_code.txt");
     273        ofs << basbuf << endl;
     274        ofs.close();
     275    }
     276#endif
    266277
    267278
     
    10901101    delete pobj_GlobalVarSchedule;
    10911102
    1092     //グローバル変数情報を扱う構造体も初期バッファの有無による配置を行う
    1093     //(デバッグ情報で利用される)
    1094     foreach( Variable *pVar, globalVars ){
    1095         if(pVar->offset&0x80000000){
    1096             pVar->offset=(pVar->offset&0x7FFFFFFF)+AllInitGlobalVarSize;
    1097         }
    1098     }
    1099 
    11001103
    11011104    ////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.