forked from OSchip/llvm-project
[ObjectFileMachO] Remove another debugging aid.
Pointed out by Jason. llvm-svn: 357135
This commit is contained in:
parent
dfbcadf562
commit
454e9428db
|
@ -6232,13 +6232,6 @@ bool ObjectFileMachO::SaveCore(const lldb::ProcessSP &process_sp,
|
||||||
mach_header.sizeofcmds += 8 + LC_THREAD_data.GetSize();
|
mach_header.sizeofcmds += 8 + LC_THREAD_data.GetSize();
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("mach_header: 0x%8.8x 0x%8.8x 0x%8.8x 0x%8.8x 0x%8.8x 0x%8.8x "
|
|
||||||
"0x%8.8x 0x%8.8x\n",
|
|
||||||
mach_header.magic, mach_header.cputype, mach_header.cpusubtype,
|
|
||||||
mach_header.filetype, mach_header.ncmds,
|
|
||||||
mach_header.sizeofcmds, mach_header.flags,
|
|
||||||
mach_header.reserved);
|
|
||||||
|
|
||||||
// Write the mach header
|
// Write the mach header
|
||||||
buffer.PutHex32(mach_header.magic);
|
buffer.PutHex32(mach_header.magic);
|
||||||
buffer.PutHex32(mach_header.cputype);
|
buffer.PutHex32(mach_header.cputype);
|
||||||
|
|
Loading…
Reference in New Issue