This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a0a6883 [docs] Fix some typos. NFC. new e851658 Bitcode: Change reader interface to take memory buffers. new 4ac35e8 Support: Remove MemoryObject and DataStreamer interfaces.
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/Bitcode/BitstreamReader.h | 109 ++++++---------- include/llvm/Bitcode/ReaderWriter.h | 8 -- include/llvm/Support/DataStream.h | 38 ------ include/llvm/Support/MemoryObject.h | 68 ---------- include/llvm/Support/StreamingMemoryObject.h | 87 ------------- lib/Bitcode/Reader/BitcodeReader.cpp | 104 ++++------------ lib/IR/GCOV.cpp | 1 - lib/Support/CMakeLists.txt | 3 - lib/Support/DataStream.cpp | 86 ------------- lib/Support/MemoryObject.cpp | 14 --- lib/Support/StreamingMemoryObject.cpp | 138 --------------------- .../AArch64/Disassembler/AArch64Disassembler.h | 1 - .../Hexagon/Disassembler/HexagonDisassembler.cpp | 1 - .../Lanai/Disassembler/LanaiDisassembler.cpp | 1 - .../Inputs/invalid-array-operand-encoding.bc | Bin 579 -> 580 bytes test/Bitcode/Inputs/invalid-code-len-width.bc | Bin 173 -> 176 bytes .../Bitcode/Inputs/invalid-extractval-array-idx.bc | Bin 450 -> 452 bytes test/Bitcode/Inputs/invalid-function-comdat-id.bc | Bin 489 -> 492 bytes .../Inputs/invalid-fwdref-type-mismatch-2.bc | Bin 617 -> 620 bytes .../invalid-metadata-not-followed-named-node.bc | Bin 878 -> 880 bytes test/Bitcode/Inputs/invalid-name-with-0-byte.bc | Bin 1265 -> 1268 bytes test/Bitcode/Inputs/invalid-unexpected-eof.bc | 2 +- tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp | 8 +- tools/llvm-dis/llvm-dis.cpp | 39 ++---- unittests/Bitcode/BitReaderTest.cpp | 81 +----------- unittests/Bitcode/BitstreamReaderTest.cpp | 100 ++------------- unittests/Support/CMakeLists.txt | 1 - unittests/Support/StreamingMemoryObjectTest.cpp | 68 ---------- 28 files changed, 83 insertions(+), 875 deletions(-) delete mode 100644 include/llvm/Support/DataStream.h delete mode 100644 include/llvm/Support/MemoryObject.h delete mode 100644 include/llvm/Support/StreamingMemoryObject.h delete mode 100644 lib/Support/DataStream.cpp delete mode 100644 lib/Support/MemoryObject.cpp delete mode 100644 lib/Support/StreamingMemoryObject.cpp delete mode 100644 unittests/Support/StreamingMemoryObjectTest.cpp