mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
Fix a bug in llvm-objdump’s -private-headers for the LC_VERSION_MIN_IPHONEOS
load command not getting printed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224376 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -3738,7 +3738,8 @@ static void PrintLoadCommands(const MachOObjectFile *Obj, uint32_t ncmds,
|
||||
} else if (Command.C.cmd == MachO::LC_RPATH) {
|
||||
MachO::rpath_command Rpath = Obj->getRpathCommand(Command);
|
||||
PrintRpathLoadCommand(Rpath, Command.Ptr);
|
||||
} else if (Command.C.cmd == MachO::LC_VERSION_MIN_MACOSX) {
|
||||
} else if (Command.C.cmd == MachO::LC_VERSION_MIN_MACOSX ||
|
||||
Command.C.cmd == MachO::LC_VERSION_MIN_IPHONEOS) {
|
||||
MachO::version_min_command Vd = Obj->getVersionMinLoadCommand(Command);
|
||||
PrintVersionMinLoadCommand(Vd);
|
||||
} else if (Command.C.cmd == MachO::LC_SOURCE_VERSION) {
|
||||
|
Reference in New Issue
Block a user