This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 66ce6fc8af9 [SafeStack] Handle unreachable code with safe stack coloring. new 8b3c688d993 [BinaryFormat] Add MessagePack reader/writer new 575895c12e1 [ARM] Lower llvm.ctlz.i32 to a libcall when clz is not available.
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: include/llvm/BinaryFormat/MsgPack.def | 108 ++++ include/llvm/BinaryFormat/MsgPack.h | 93 +++ include/llvm/BinaryFormat/MsgPackReader.h | 148 +++++ include/llvm/BinaryFormat/MsgPackWriter.h | 131 ++++ include/llvm/IR/RuntimeLibcalls.def | 3 + lib/BinaryFormat/CMakeLists.txt | 2 + lib/BinaryFormat/MsgPackReader.cpp | 255 ++++++++ lib/BinaryFormat/MsgPackWriter.cpp | 208 +++++++ lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 15 + lib/Target/ARM/ARMISelLowering.cpp | 4 +- test/CodeGen/ARM/clz.ll | 8 +- unittests/BinaryFormat/CMakeLists.txt | 2 + unittests/BinaryFormat/MsgPackReaderTest.cpp | 891 +++++++++++++++++++++++++++ unittests/BinaryFormat/MsgPackWriterTest.cpp | 523 ++++++++++++++++ 14 files changed, 2387 insertions(+), 4 deletions(-) create mode 100644 include/llvm/BinaryFormat/MsgPack.def create mode 100644 include/llvm/BinaryFormat/MsgPack.h create mode 100644 include/llvm/BinaryFormat/MsgPackReader.h create mode 100644 include/llvm/BinaryFormat/MsgPackWriter.h create mode 100644 lib/BinaryFormat/MsgPackReader.cpp create mode 100644 lib/BinaryFormat/MsgPackWriter.cpp create mode 100644 unittests/BinaryFormat/MsgPackReaderTest.cpp create mode 100644 unittests/BinaryFormat/MsgPackWriterTest.cpp