diff options
Diffstat (limited to 'llvm/lib/ObjCopy/MachO/MachOObject.cpp')
-rw-r--r-- | llvm/lib/ObjCopy/MachO/MachOObject.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/ObjCopy/MachO/MachOObject.cpp b/llvm/lib/ObjCopy/MachO/MachOObject.cpp index 8d2c02d..e0819d8 100644 --- a/llvm/lib/ObjCopy/MachO/MachOObject.cpp +++ b/llvm/lib/ObjCopy/MachO/MachOObject.cpp @@ -98,6 +98,10 @@ void Object::updateLoadCommandIndexes() { case MachO::LC_DYLD_EXPORTS_TRIE: ExportsTrieCommandIndex = Index; break; + case MachO::LC_ENCRYPTION_INFO: + case MachO::LC_ENCRYPTION_INFO_64: + EncryptionInfoCommandIndex = Index; + break; } } } |