Changeset 759 in dev for branches/x64_compiler_on_32/abdev/BasicCompiler_Common/DebugMiddleFile.cpp
- Timestamp:
- Sep 26, 2008, 11:49:14 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/x64_compiler_on_32/abdev/BasicCompiler_Common/DebugMiddleFile.cpp
r750 r759 3 3 #include "../BasicCompiler_Common/DebugSection.h" 4 4 5 #if def _AMD64_5 #if defined _AMD64_ || defined BUILD_X64_COMPILER 6 6 #include "../compiler_x64/opcode.h" 7 7 #else … … 104 104 // オブジェクトモジュールリストに類似したソースコードリストを作成 105 105 BasicSources sources; 106 sources.reserve( compiler.staticLibraries.size() ); 106 107 foreach( const ObjectModule *pObjectModule, compiler.staticLibraries ) 107 108 { … … 240 241 int maxLineInfoNum = *(long *)(buffer+i2); 241 242 i2+=sizeof(long); 243 _oldSourceLines.reserve( maxLineInfoNum ); 242 244 for(i3=0;i3<maxLineInfoNum;i3++){ 243 245 int nativeCodePos = *(long *)(buffer+i2); … … 319 321 320 322 int pe_size; 321 #if def _AMD64_323 #if defined _AMD64_ || defined BUILD_X64_COMPILER 322 324 IMAGE_NT_HEADERS64 pe_hdr; 323 325 pe_size=sizeof(IMAGE_NT_HEADERS64);
Note:
See TracChangeset
for help on using the changeset viewer.