This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0402afb4c1b Use llvm::StringLiteral instead of StringRef in few places new 5496a24d4c0 [TextAPI] Arch&Platform to Target new 8adad6363b8 gn build: Merge r372396 new 22b465abb41 Add a missing space in a MIR parser error message
The 3 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.h | 4 + include/llvm/TextAPI/MachO/ArchitectureSet.h | 4 + include/llvm/TextAPI/MachO/InterfaceFile.h | 142 +++++++++++++++---------- include/llvm/TextAPI/MachO/Platform.h | 40 +++++++ include/llvm/TextAPI/MachO/Symbol.h | 26 +++-- include/llvm/TextAPI/MachO/Target.h | 66 ++++++++++++ lib/CodeGen/MIRParser/MIRParser.cpp | 2 +- lib/Object/TapiFile.cpp | 4 +- lib/TextAPI/CMakeLists.txt | 2 + lib/TextAPI/MachO/Architecture.cpp | 4 + lib/TextAPI/MachO/InterfaceFile.cpp | 80 ++++++++++---- lib/TextAPI/MachO/Platform.cpp | 61 +++++++++++ lib/TextAPI/MachO/Symbol.cpp | 9 ++ lib/TextAPI/MachO/Target.cpp | 45 ++++++++ lib/TextAPI/MachO/TextStub.cpp | 86 +++++++++------ lib/TextAPI/MachO/TextStubCommon.cpp | 39 ++++--- lib/TextAPI/MachO/TextStubCommon.h | 8 +- test/CodeGen/MIR/X86/call-site-info-error2.mir | 2 +- tools/llvm-ifs/llvm-ifs.cpp | 27 +---- unittests/TextAPI/TextStubV1Tests.cpp | 64 +++++++---- unittests/TextAPI/TextStubV2Tests.cpp | 67 ++++++++---- unittests/TextAPI/TextStubV3Tests.cpp | 63 +++++++---- utils/gn/secondary/llvm/lib/TextAPI/BUILD.gn | 2 + 23 files changed, 619 insertions(+), 228 deletions(-) create mode 100644 include/llvm/TextAPI/MachO/Platform.h create mode 100644 include/llvm/TextAPI/MachO/Target.h create mode 100644 lib/TextAPI/MachO/Platform.cpp create mode 100644 lib/TextAPI/MachO/Target.cpp