This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lld.
from de8dafdfb Revert r330223, "COFF: Merge .idata, .didat and .edata into . [...] new d94b8cc73 COFF: Implement /pdbaltpath flag. new 9e2ad8fd3 Reland r330223, "COFF: Merge .idata, .didat and .edata into . [...] new 220cceb70 [ELF] Add profile guided section layout new 64d53dc43 COFF: Friendlier undefined symbol errors.
The 4 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: COFF/Chunks.h | 3 +- COFF/Config.h | 1 + COFF/Driver.cpp | 25 +++- COFF/InputFiles.cpp | 4 +- COFF/PDB.cpp | 142 ++++++++++++++++++++ COFF/PDB.h | 4 + COFF/SymbolTable.cpp | 66 +++++++++- COFF/Writer.cpp | 15 +-- ELF/CMakeLists.txt | 1 + ELF/CallGraphSort.cpp | 251 ++++++++++++++++++++++++++++++++++++ ELF/{EhFrame.h => CallGraphSort.h} | 12 +- ELF/Config.h | 4 + ELF/Driver.cpp | 44 +++++++ ELF/Options.td | 3 + ELF/Symbols.cpp | 21 +++ ELF/Symbols.h | 2 + ELF/Writer.cpp | 25 +--- test/COFF/arm64-relocs-imports.test | 4 +- test/COFF/delayimports-armnt.yaml | 14 +- test/COFF/delayimports.test | 12 +- test/COFF/delayimports32.test | 8 +- test/COFF/export-armnt.yaml | 2 +- test/COFF/filename-casing.s | 6 +- test/COFF/force.test | 6 +- test/COFF/hello32.test | 8 +- test/COFF/imports.test | 14 +- test/COFF/nodefaultlib.test | 3 +- test/COFF/pdb-publics-import.test | 9 +- test/COFF/rsds.test | 12 +- test/COFF/symtab.test | 4 +- test/COFF/undefined-symbol-cv.s | 61 +++++++++ test/COFF/undefined-symbol.s | 29 +++++ test/ELF/cgprofile-bad-clusters.s | 71 ++++++++++ test/ELF/cgprofile-icf.s | 53 ++++++++ test/ELF/cgprofile-txt.s | 185 ++++++++++++++++++++++++++ test/ELF/cgprofile-warn.s | 29 +++++ 36 files changed, 1060 insertions(+), 93 deletions(-) create mode 100644 ELF/CallGraphSort.cpp copy ELF/{EhFrame.h => CallGraphSort.h} (58%) create mode 100644 test/COFF/undefined-symbol-cv.s create mode 100644 test/COFF/undefined-symbol.s create mode 100644 test/ELF/cgprofile-bad-clusters.s create mode 100644 test/ELF/cgprofile-icf.s create mode 100644 test/ELF/cgprofile-txt.s create mode 100644 test/ELF/cgprofile-warn.s