Changeset 76 in dev for BasicCompiler64/MakePeHdr.cpp
- Timestamp:
- Mar 21, 2007, 9:26:56 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/MakePeHdr.cpp
r75 r76 264 264 obj_LexScopes.Init(obp); 265 265 266 267 ///////////////////////////////////////////////////////////////// 268 // デバッグコンパイル用のログを生成する 269 ///////////////////////////////////////////////////////////////// 270 #ifdef _DEBUG 271 { 272 ofstream ofs("middle_code.txt"); 273 ofs << basbuf << endl; 274 ofs.close(); 275 } 276 #endif 266 277 267 278 … … 1090 1101 delete pobj_GlobalVarSchedule; 1091 1102 1092 //グローバル変数情報を扱う構造体も初期バッファの有無による配置を行う1093 //(デバッグ情報で利用される)1094 foreach( Variable *pVar, globalVars ){1095 if(pVar->offset&0x80000000){1096 pVar->offset=(pVar->offset&0x7FFFFFFF)+AllInitGlobalVarSize;1097 }1098 }1099 1100 1103 1101 1104 ////////////////////////////////
Note:
See TracChangeset
for help on using the changeset viewer.