Add printing the LC_SUB_UMBRELLA load command with llvm-objdump’s -private-headers.
[oota-llvm.git] / lib / Object / MachOObjectFile.cpp
index a5031f17939e7db5d5b21ff53f2efc71908dbb76..fd086af6d527de44d7a17d3e1e8da336a434e420 100644 (file)
@@ -2314,6 +2314,11 @@ MachOObjectFile::getSubFrameworkCommand(const LoadCommandInfo &L) const {
   return getStruct<MachO::sub_framework_command>(this, L.Ptr);
 }
 
+MachO::sub_umbrella_command
+MachOObjectFile::getSubUmbrellaCommand(const LoadCommandInfo &L) const {
+  return getStruct<MachO::sub_umbrella_command>(this, L.Ptr);
+}
+
 MachO::any_relocation_info
 MachOObjectFile::getRelocation(DataRefImpl Rel) const {
   DataRefImpl Sec;