Changeset 459 in dev for trunk/ab5.0/abdev/BasicCompiler32/MakePeHdr.cpp
- Timestamp:
- Mar 23, 2008, 10:38:38 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler32/MakePeHdr.cpp
r451 r459 102 102 extern HWND hOwnerEditor; 103 103 extern HANDLE hHeap; 104 extern BOOL bDebugCompile;105 104 extern DWORD ImageBase; 106 105 extern char *basbuf; … … 130 129 ////////////////// 131 130 // データテーブル 132 if( bDebugCompile){131 if( compiler.IsDebug() ){ 133 132 compiler.GetObjectModule().dataTable.Add( (long)0x00000002 ); 134 133 } … … 401 400 compiler.codeGenerator.op_push(REG_EBP); 402 401 403 if( bDebugCompile)402 if( compiler.IsDebug() ) 404 403 { 405 404 // デバッグ用の変数を定義 … … 832 831 CDebugSection *pobj_DebugSection; 833 832 pobj_DebugSection=new CDebugSection(); 834 extern BOOL bDebugCompile;835 833 extern BOOL bError; 836 if(bDebugCompile&&bError==0){ 834 if( compiler.IsDebug() && bError == 0 ) 835 { 837 836 CompileMessage( "デバッグ情報を生成しています。" ); 838 837
Note:
See TracChangeset
for help on using the changeset viewer.