This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from cccd305 Define DbiStreamBuilder::addSectionContribs. new 97dac2b [Support] Introduce llvm::formatv() function. new 005ec66 Fix -Werror build with clang-cl.
The 2 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: docs/ProgrammersManual.rst | 130 +++++++ include/llvm/ADT/STLExtras.h | 17 + include/llvm/Support/FormatAdapters.h | 92 +++++ include/llvm/Support/FormatCommon.h | 69 ++++ include/llvm/Support/FormatProviders.h | 411 ++++++++++++++++++++ include/llvm/Support/FormatVariadic.h | 246 ++++++++++++ include/llvm/Support/FormatVariadicDetails.h | 149 ++++++++ include/llvm/Support/NativeFormatting.h | 19 +- include/llvm/Support/YAMLTraits.h | 5 +- include/llvm/Support/raw_ostream.h | 4 + lib/IR/AsmWriter.cpp | 2 +- lib/Support/CMakeLists.txt | 1 + lib/Support/FormatVariadic.cpp | 156 ++++++++ lib/Support/NativeFormatting.cpp | 67 ++-- lib/Support/raw_ostream.cpp | 17 +- unittests/Support/CMakeLists.txt | 1 + unittests/Support/FormatVariadicTest.cpp | 538 +++++++++++++++++++++++++++ unittests/Support/NativeFormatTests.cpp | 2 +- 18 files changed, 1886 insertions(+), 40 deletions(-) create mode 100644 include/llvm/Support/FormatAdapters.h create mode 100644 include/llvm/Support/FormatCommon.h create mode 100644 include/llvm/Support/FormatProviders.h create mode 100644 include/llvm/Support/FormatVariadic.h create mode 100644 include/llvm/Support/FormatVariadicDetails.h create mode 100644 lib/Support/FormatVariadic.cpp create mode 100644 unittests/Support/FormatVariadicTest.cpp