diff options
author | Eric Christopher <echristo@apple.com> | 2011-04-04 17:36:11 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-04-04 17:36:11 +0000 |
commit | 138b77c38a660469392207e3cebcd1b718bc285e (patch) | |
tree | 219aaccf75dd0fbe7e18ae6654c84876fd686b26 | |
parent | ac79e4c82f201c30a06c2cd05baebd20f5b49888 (diff) |
Remove unused function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128834 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/macho-dump/macho-dump.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tools/macho-dump/macho-dump.cpp b/tools/macho-dump/macho-dump.cpp index c040df21c6..f324259a85 100644 --- a/tools/macho-dump/macho-dump.cpp +++ b/tools/macho-dump/macho-dump.cpp @@ -49,27 +49,6 @@ static void Warning(const Twine &Msg) { /// -#if 0 -static int DumpHeader(MachOObject &Obj) { - // Read the header. - const macho::Header &Hdr = Obj.getHeader(); - outs() << "('cputype', " << Hdr.CPUType << ")\n"; - outs() << "('cpusubtype', " << Hdr.CPUSubtype << ")\n"; - outs() << "('filetype', " << Hdr.FileType << ")\n"; - outs() << "('num_load_commands', " << Hdr.NumLoadCommands << ")\n"; - outs() << "('load_commands_size', " << Hdr.SizeOfLoadCommands << ")\n"; - outs() << "('flag', " << Hdr.Flags << ")\n"; - - // Print extended header if 64-bit. - if (Obj.is64Bit()) { - const macho::Header64Ext &Hdr64 = Obj.getHeader64Ext(); - outs() << "('reserved', " << Hdr64.Reserved << ")\n"; - } - - return 0; -} -#endif - static void DumpSegmentCommandData(StringRef Name, uint64_t VMAddr, uint64_t VMSize, uint64_t FileOffset, uint64_t FileSize, |