This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b198d4ebde5 [ICP] Expose unconditional call promotion interface new 082879a7af3 TableGen: Allow setting SDNodeProperties on intrinsics new d694a386908 [X86] Refactor DomainReassignment pass to make the Closure [...] new 86e7a0583d3 PR35705: Fix Chapter 9 example code for API changes to DIBuilder
The 3 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/tutorial/LangImpl09.rst | 5 +- examples/Kaleidoscope/CMakeLists.txt | 1 + examples/Kaleidoscope/Chapter9/toy.cpp | 5 +- include/llvm/CodeGen/SDNodeProperties.td | 34 ++++++ include/llvm/IR/Intrinsics.td | 10 +- include/llvm/Target/TargetSelectionDAG.td | 26 ----- lib/Target/X86/X86DomainReassignment.cpp | 167 ++++++++++++++++-------------- test/TableGen/intrinsic-long-name.td | 2 + test/TableGen/intrinsic-struct.td | 2 + test/TableGen/intrinsic-varargs.td | 2 + utils/TableGen/CMakeLists.txt | 1 + utils/TableGen/CodeGenDAGPatterns.cpp | 45 +++----- utils/TableGen/CodeGenDAGPatterns.h | 2 + utils/TableGen/CodeGenIntrinsics.h | 8 ++ utils/TableGen/CodeGenTarget.cpp | 7 ++ utils/TableGen/CodeGenTarget.h | 20 +--- utils/TableGen/SDNodeProperties.cpp | 49 +++++++++ utils/TableGen/SDNodeProperties.h | 40 +++++++ 18 files changed, 262 insertions(+), 164 deletions(-) create mode 100644 include/llvm/CodeGen/SDNodeProperties.td create mode 100644 utils/TableGen/SDNodeProperties.cpp create mode 100644 utils/TableGen/SDNodeProperties.h