diff options
author | Davide Italiano <davide@freebsd.org> | 2019-03-28 00:07:20 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2019-03-28 00:07:20 +0000 |
commit | 454e9428db20b43c081cba49820f9487a6805761 (patch) | |
tree | d44414be76716a9b53750d7f239b162ffea37eac /lldb/source/Plugins/ObjectFile | |
parent | dfbcadf562f6f362537e72661ba0fef6ca0243b9 (diff) | |
download | bcm5719-llvm-454e9428db20b43c081cba49820f9487a6805761.tar.gz bcm5719-llvm-454e9428db20b43c081cba49820f9487a6805761.zip |
[ObjectFileMachO] Remove another debugging aid.
Pointed out by Jason.
llvm-svn: 357135
Diffstat (limited to 'lldb/source/Plugins/ObjectFile')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp index ae1eac634ec..bdc4e19c3e6 100644 --- a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp +++ b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp @@ -6232,13 +6232,6 @@ bool ObjectFileMachO::SaveCore(const lldb::ProcessSP &process_sp, 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 buffer.PutHex32(mach_header.magic); buffer.PutHex32(mach_header.cputype); |