This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0fe42534131 [NFC] Fix unused variable in release builds new ec358cd5386 [gicombiner] Add a CodeExpander to handle C++ fragments wit [...]
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: unittests/CMakeLists.txt | 3 +- unittests/TableGen/CMakeLists.txt | 10 ++ unittests/TableGen/CodeExpanderTest.cpp | 203 +++++++++++++++++++++++++++++ utils/TableGen/CMakeLists.txt | 3 + utils/TableGen/GICombinerEmitter.cpp | 5 + utils/TableGen/GlobalISel/CMakeLists.txt | 7 + utils/TableGen/GlobalISel/CodeExpander.cpp | 93 +++++++++++++ utils/TableGen/GlobalISel/CodeExpander.h | 55 ++++++++ utils/TableGen/GlobalISel/CodeExpansions.h | 43 ++++++ 9 files changed, 421 insertions(+), 1 deletion(-) create mode 100644 unittests/TableGen/CMakeLists.txt create mode 100644 unittests/TableGen/CodeExpanderTest.cpp create mode 100644 utils/TableGen/GlobalISel/CMakeLists.txt create mode 100644 utils/TableGen/GlobalISel/CodeExpander.cpp create mode 100644 utils/TableGen/GlobalISel/CodeExpander.h create mode 100644 utils/TableGen/GlobalISel/CodeExpansions.h