[PATCH] D66409: [llvm-objcopy][MachO] Implement -Obinary
Jordan Rupprecht via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 22 13:57:24 PDT 2019
rupprecht added inline comments.
================
Comment at: llvm/tools/llvm-objcopy/MachO/MachOWriter.cpp:524-527
+ size_t TotalSize =
+ OrderedSections.empty()
+ ? 0
+ : (OrderedSections.back()->Addr + OrderedSections.back()->Size);
----------------
`ELF/binary-output-empty.test` would be a good test to add for this
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D66409/new/
https://reviews.llvm.org/D66409
More information about the llvm-commits
mailing list