This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from ccefd880658 [DebugInfo] IR/Bitcode changes for DISubprogram flags. new 1d248831181 [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 | 39 ++ include/llvm/TextAPI/MachO/Architecture.h | 49 ++ include/llvm/TextAPI/MachO/ArchitectureSet.h | 152 ++++++ include/llvm/TextAPI/MachO/InterfaceFile.h | 439 ++++++++++++++++++ include/llvm/TextAPI/MachO/PackedVersion.h | 66 +++ include/llvm/TextAPI/MachO/Symbol.h | 102 +++++ include/llvm/TextAPI/MachO/TextAPIReader.h | 35 ++ include/llvm/TextAPI/MachO/TextAPIWriter.h | 30 ++ lib/CMakeLists.txt | 1 + lib/LLVMBuild.txt | 1 + lib/TextAPI/CMakeLists.txt | 12 + lib/{ => TextAPI}/LLVMBuild.txt | 41 +- lib/TextAPI/MachO/Architecture.cpp | 71 +++ lib/TextAPI/MachO/ArchitectureSet.cpp | 84 ++++ lib/TextAPI/MachO/InterfaceFile.cpp | 86 ++++ lib/TextAPI/MachO/PackedVersion.cpp | 115 +++++ lib/TextAPI/MachO/Symbol.cpp | 51 +++ lib/TextAPI/MachO/TextAPIContext.h | 35 ++ lib/TextAPI/MachO/TextStub.cpp | 659 +++++++++++++++++++++++++++ lib/TextAPI/MachO/TextStubCommon.cpp | 180 ++++++++ lib/TextAPI/MachO/TextStubCommon.h | 83 ++++ unittests/CMakeLists.txt | 1 + unittests/TextAPI/CMakeLists.txt | 8 + unittests/TextAPI/TextStubV1Tests.cpp | 444 ++++++++++++++++++ unittests/TextAPI/TextStubV2Tests.cpp | 469 +++++++++++++++++++ 25 files changed, 3217 insertions(+), 36 deletions(-) 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/CMakeLists.txt copy lib/{ => TextAPI}/LLVMBuild.txt (56%) 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/CMakeLists.txt create mode 100644 unittests/TextAPI/TextStubV1Tests.cpp create mode 100644 unittests/TextAPI/TextStubV2Tests.cpp