Changeset 460 in dev for trunk/ab5.0/abdev/BasicCompiler64/MakePeHdr.cpp
- Timestamp:
- Mar 23, 2008, 10:43:50 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler64/MakePeHdr.cpp
r452 r460 91 91 extern HWND hOwnerEditor; 92 92 extern HANDLE hHeap; 93 extern BOOL bDebugCompile;94 93 extern DWORD ImageBase; 95 94 extern int obp_AllocSize; … … 119 118 ////////////////// 120 119 // データテーブル 121 if(bDebugCompile){ 120 if( compiler.IsDebug() ) 121 { 122 122 compiler.GetObjectModule().dataTable.Add( (long)0x00000002 ); 123 123 } … … 360 360 compiler.codeGenerator.op_sub_RV( sizeof(_int64), REG_RSP, 0x108 ); 361 361 362 if(bDebugCompile){ 362 if( compiler.IsDebug() ) 363 { 363 364 //デバッグ用の変数を定義 364 365 DebugVariable(); … … 831 832 CDebugSection *pobj_DebugSection; 832 833 pobj_DebugSection=new CDebugSection(); 833 extern BOOL bDebugCompile;834 834 extern BOOL bError; 835 if(bDebugCompile&&bError==0){ 835 if( compiler.IsDebug() && bError == 0 ) 836 { 836 837 CompileMessage( "デバッグ情報を生成しています。" ); 837 838
Note:
See TracChangeset
for help on using the changeset viewer.