This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lld.
from 7689587fd [ELF] Don't advance position in a memory region when assignin [...] new 517b10e48 [WebAssembly] Refactor synthetic sections and relocation proc [...]
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 | 4 +- wasm/InputChunks.h | 3 + wasm/InputFiles.cpp | 7 +- wasm/OutputSections.cpp | 7 +- wasm/OutputSections.h | 53 +-- wasm/Relocations.cpp | 86 ++++ wasm/{Writer.h => Relocations.h} | 10 +- wasm/Symbols.cpp | 22 +- wasm/Symbols.h | 46 +- wasm/SyntheticSections.cpp | 543 +++++++++++++++++++++ wasm/SyntheticSections.h | 323 +++++++++++++ wasm/Writer.cpp | 999 ++++++--------------------------------- wasm/Writer.h | 2 - 13 files changed, 1169 insertions(+), 936 deletions(-) create mode 100644 wasm/Relocations.cpp copy wasm/{Writer.h => Relocations.h} (64%) create mode 100644 wasm/SyntheticSections.cpp create mode 100644 wasm/SyntheticSections.h