aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Object/ObjectFile.cpp
diff options
context:
space:
mode:
authorPeter Cooper <peter_cooper@apple.com>2022-08-24 09:53:15 -0700
committerPeter Cooper <peter_cooper@apple.com>2022-08-24 13:34:43 -0700
commit611399806923e3e76a04e16bebb1fa7b85354346 (patch)
tree1675314ef403f61f861f02ae9c76ca29009a6f6a /llvm/lib/Object/ObjectFile.cpp
parent8f45b5a7a90f24ae1dabeff161e22594039a8b0a (diff)
downloadllvm-611399806923e3e76a04e16bebb1fa7b85354346.zip
llvm-611399806923e3e76a04e16bebb1fa7b85354346.tar.gz
llvm-611399806923e3e76a04e16bebb1fa7b85354346.tar.bz2
Add MachO MH_FILESET support to objdump
https://reviews.llvm.org/D131909
Diffstat (limited to 'llvm/lib/Object/ObjectFile.cpp')
-rw-r--r--llvm/lib/Object/ObjectFile.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Object/ObjectFile.cpp b/llvm/lib/Object/ObjectFile.cpp
index 1be8f11..bc8e602 100644
--- a/llvm/lib/Object/ObjectFile.cpp
+++ b/llvm/lib/Object/ObjectFile.cpp
@@ -169,6 +169,7 @@ ObjectFile::createObjectFile(MemoryBufferRef Object, file_magic Type,
case file_magic::macho_dynamically_linked_shared_lib_stub:
case file_magic::macho_dsym_companion:
case file_magic::macho_kext_bundle:
+ case file_magic::macho_file_set:
return createMachOObjectFile(Object);
case file_magic::coff_object:
case file_magic::coff_import_library: