This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from ee2b0072830 Silence CMP0048 warning in the benchmark utility library new 6592c09789e [macho] save the SDK version stored in module metadata into [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/IR/Module.h | 12 +++ include/llvm/MC/MCAssembler.h | 11 ++- include/llvm/MC/MCObjectFileInfo.h | 8 ++ include/llvm/MC/MCStreamer.h | 10 +- lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 2 +- lib/IR/Module.cpp | 40 ++++++++ lib/MC/MCAsmStreamer.cpp | 25 ++++- lib/MC/MCAssembler.cpp | 1 + lib/MC/MCMachOStreamer.cpp | 20 ++-- lib/MC/MCParser/DarwinAsmParser.cpp | 107 ++++++++++++++++----- lib/MC/MCStreamer.cpp | 5 +- lib/MC/MachObjectWriter.cpp | 23 +++-- lib/Object/ModuleSymbolTable.cpp | 1 + .../MachO/ARM/build-version-sdk-version-errors.c | 19 ++++ test/MC/MachO/ARM/build-version-sdk-version.s | 13 +++ test/MC/MachO/build-version-with-sdk-version.s | 13 +++ test/MC/MachO/darwin-sdk-version.ll | 18 ++++ .../osx-version-min-load-command-with-sdk-errors.s | 10 ++ .../MachO/osx-version-min-load-command-with-sdk.s | 12 +++ 19 files changed, 297 insertions(+), 53 deletions(-) create mode 100644 test/MC/MachO/ARM/build-version-sdk-version-errors.c create mode 100644 test/MC/MachO/ARM/build-version-sdk-version.s create mode 100644 test/MC/MachO/build-version-with-sdk-version.s create mode 100644 test/MC/MachO/darwin-sdk-version.ll create mode 100644 test/MC/MachO/osx-version-min-load-command-with-sdk-errors.s create mode 100644 test/MC/MachO/osx-version-min-load-command-with-sdk.s