This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b8f993f [X86][SSE] Add support for target shuffle constant folding new 7a578c9 [WebAssembly] Add llvm-objdump support for wasm file format
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/Object/Binary.h | 4 + include/llvm/Object/ObjectFile.h | 3 + include/llvm/Object/Wasm.h | 99 ++++++++++ include/llvm/Support/FileSystem.h | 3 +- include/llvm/Support/Wasm.h | 58 ++++++ lib/Object/Binary.cpp | 1 + lib/Object/CMakeLists.txt | 1 + lib/Object/ObjectFile.cpp | 5 +- lib/Object/SymbolicFile.cpp | 1 + lib/Object/WasmObjectFile.cpp | 315 +++++++++++++++++++++++++++++++ lib/Support/Path.cpp | 2 + test/tools/llvm-objdump/Inputs/test.wasm | Bin 0 -> 165 bytes test/tools/llvm-objdump/wasm.txt | 24 +++ tools/llvm-objdump/CMakeLists.txt | 1 + tools/llvm-objdump/WasmDump.cpp | 28 +++ tools/llvm-objdump/llvm-objdump.cpp | 2 + tools/llvm-objdump/llvm-objdump.h | 1 + 17 files changed, 546 insertions(+), 2 deletions(-) create mode 100644 include/llvm/Object/Wasm.h create mode 100644 include/llvm/Support/Wasm.h create mode 100644 lib/Object/WasmObjectFile.cpp create mode 100644 test/tools/llvm-objdump/Inputs/test.wasm create mode 100644 test/tools/llvm-objdump/wasm.txt create mode 100644 tools/llvm-objdump/WasmDump.cpp