This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 7057f99d389 [SLP] Remove redundancy of performing operand reordering tw [...] new 6dbc6445b5f [TextAPI] TBD Reader/Writer
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/TextAPI/MachO/Architecture.def | 38 ++ include/llvm/TextAPI/MachO/Architecture.h | 47 ++ include/llvm/TextAPI/MachO/ArchitectureSet.h | 160 +++++++ include/llvm/TextAPI/MachO/InterfaceFile.h | 436 ++++++++++++++++++ include/llvm/TextAPI/MachO/PackedVersion.h | 64 +++ include/llvm/TextAPI/MachO/Symbol.h | 96 ++++ include/llvm/TextAPI/MachO/TextAPIReader.h | 34 ++ include/llvm/TextAPI/MachO/TextAPIWriter.h | 29 ++ lib/TextAPI/CMakeLists.txt | 7 + lib/TextAPI/MachO/Architecture.cpp | 77 ++++ lib/TextAPI/MachO/ArchitectureSet.cpp | 69 +++ lib/TextAPI/MachO/InterfaceFile.cpp | 84 ++++ lib/TextAPI/MachO/PackedVersion.cpp | 113 +++++ lib/TextAPI/MachO/Symbol.cpp | 49 ++ lib/TextAPI/MachO/TextAPIContext.h | 33 ++ lib/TextAPI/MachO/TextStub.cpp | 660 +++++++++++++++++++++++++++ lib/TextAPI/MachO/TextStubCommon.cpp | 178 ++++++++ lib/TextAPI/MachO/TextStubCommon.h | 81 ++++ unittests/TextAPI/CMakeLists.txt | 4 +- unittests/TextAPI/TextStubV1Tests.cpp | 456 ++++++++++++++++++ unittests/TextAPI/TextStubV2Tests.cpp | 481 +++++++++++++++++++ 21 files changed, 3195 insertions(+), 1 deletion(-) create mode 100644 include/llvm/TextAPI/MachO/Architecture.def create mode 100644 include/llvm/TextAPI/MachO/Architecture.h create mode 100644 include/llvm/TextAPI/MachO/ArchitectureSet.h create mode 100644 include/llvm/TextAPI/MachO/InterfaceFile.h create mode 100644 include/llvm/TextAPI/MachO/PackedVersion.h create mode 100644 include/llvm/TextAPI/MachO/Symbol.h create mode 100644 include/llvm/TextAPI/MachO/TextAPIReader.h create mode 100644 include/llvm/TextAPI/MachO/TextAPIWriter.h create mode 100644 lib/TextAPI/MachO/Architecture.cpp create mode 100644 lib/TextAPI/MachO/ArchitectureSet.cpp create mode 100644 lib/TextAPI/MachO/InterfaceFile.cpp create mode 100644 lib/TextAPI/MachO/PackedVersion.cpp create mode 100644 lib/TextAPI/MachO/Symbol.cpp create mode 100644 lib/TextAPI/MachO/TextAPIContext.h create mode 100644 lib/TextAPI/MachO/TextStub.cpp create mode 100644 lib/TextAPI/MachO/TextStubCommon.cpp create mode 100644 lib/TextAPI/MachO/TextStubCommon.h create mode 100644 unittests/TextAPI/TextStubV1Tests.cpp create mode 100644 unittests/TextAPI/TextStubV2Tests.cpp