This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lld.
from d28e1b78b [WebAssembly] Refactor symbol and symbol table to remove Wasm [...] new c8e19179f [WebAssembly] Add InputChunk as common base class for InputSe [...]
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: wasm/CMakeLists.txt | 2 +- wasm/{InputSegment.cpp => InputChunks.cpp} | 12 ++- wasm/InputChunks.h | 125 +++++++++++++++++++++++++++++ wasm/InputFiles.cpp | 21 ++--- wasm/InputFiles.h | 2 +- wasm/InputFunction.h | 57 ------------- wasm/InputSegment.h | 76 ------------------ wasm/OutputSections.cpp | 41 +++++----- wasm/OutputSections.h | 3 +- wasm/OutputSegment.h | 2 +- wasm/SymbolTable.cpp | 2 +- wasm/Symbols.cpp | 3 +- wasm/Writer.cpp | 2 +- 13 files changed, 165 insertions(+), 183 deletions(-) rename wasm/{InputSegment.cpp => InputChunks.cpp} (66%) create mode 100644 wasm/InputChunks.h delete mode 100644 wasm/InputFunction.h delete mode 100644 wasm/InputSegment.h