This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 3be0f86cb73 [mips] Improve diagnostics for instruction mapping new db9af3fb6a3 Emit Function IDs table for Control Flow Guard new ca5199fe25e [CVP] Replace incoming values from unreachable blocks with undef.
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: include/llvm/MC/MCObjectFileInfo.h | 2 + include/llvm/MC/MCStreamer.h | 3 + include/llvm/MC/MCWinCOFFStreamer.h | 1 + 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/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 ++ .../Scalar/CorrelatedValuePropagation.cpp | 28 +++- test/CodeGen/WinCFGuard/cfguard.ll | 162 +++++++++++++++++++++ test/MC/COFF/symidx.s | 15 ++ .../CorrelatedValuePropagation/pr35807.ll | 65 +++++++++ 16 files changed, 425 insertions(+), 5 deletions(-) create mode 100644 lib/CodeGen/AsmPrinter/WinCFGuard.cpp create mode 100644 lib/CodeGen/AsmPrinter/WinCFGuard.h create mode 100644 test/CodeGen/WinCFGuard/cfguard.ll create mode 100644 test/MC/COFF/symidx.s create mode 100644 test/Transforms/CorrelatedValuePropagation/pr35807.ll