This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from e1e7096503f [DWARFv5] MC support for MD5 file checksums new e92250ac8f3 [WebAssembly] Add COMDAT support new f19ed7af352 Reland "Emit Function IDs table for Control Flow Guard"
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: docs/LangRef.rst | 4 +- include/llvm/ADT/Triple.h | 4 +- include/llvm/BinaryFormat/Wasm.h | 22 ++- include/llvm/MC/MCObjectFileInfo.h | 2 + include/llvm/MC/MCStreamer.h | 3 + include/llvm/MC/MCWinCOFFStreamer.h | 1 + include/llvm/Object/Wasm.h | 3 + include/llvm/ObjectYAML/WasmYAML.h | 26 ++++ lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 10 ++ lib/CodeGen/AsmPrinter/CMakeLists.txt | 1 + lib/CodeGen/AsmPrinter/WinCFGuard.cpp | 45 ++++++ lib/CodeGen/AsmPrinter/WinCFGuard.h | 54 +++++++ lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 29 ++-- lib/MC/MCAsmStreamer.cpp | 7 + lib/MC/MCObjectFileInfo.cpp | 5 + lib/MC/MCParser/COFFAsmParser.cpp | 19 ++- lib/MC/MCStreamer.cpp | 2 + lib/MC/MCWinCOFFStreamer.cpp | 11 ++ lib/MC/WasmObjectWriter.cpp | 51 ++++++- lib/Object/WasmObjectFile.cpp | 54 +++++++ lib/ObjectYAML/WasmYAML.cpp | 21 +++ test/CodeGen/WebAssembly/comdat.ll | 5 - test/CodeGen/WinCFGuard/cfguard.ll | 162 +++++++++++++++++++++ test/CodeGen/{MIR/X86 => WinCFGuard}/lit.local.cfg | 0 test/MC/COFF/symidx.s | 15 ++ test/MC/WebAssembly/comdat.ll | 99 +++++++++++++ tools/obj2yaml/wasm2yaml.cpp | 23 ++- tools/yaml2obj/yaml2wasm.cpp | 17 +++ 28 files changed, 662 insertions(+), 33 deletions(-) create mode 100644 lib/CodeGen/AsmPrinter/WinCFGuard.cpp create mode 100644 lib/CodeGen/AsmPrinter/WinCFGuard.h delete mode 100644 test/CodeGen/WebAssembly/comdat.ll create mode 100644 test/CodeGen/WinCFGuard/cfguard.ll copy test/CodeGen/{MIR/X86 => WinCFGuard}/lit.local.cfg (100%) create mode 100644 test/MC/COFF/symidx.s create mode 100644 test/MC/WebAssembly/comdat.ll