This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 9042a61f9ba [Testing/Support]: Better matching of Error failure states new 530167710b9 Re-land r329273: [Plugins] Add a slim plugin API to work to [...] new 92c0e782b00 [InstCombine] add vector and vector undef tests for FP folds; NFC
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/Demangle/Compiler.h | 18 ++++ include/llvm/Passes/PassPlugin.h | 114 ++++++++++++++++++++ lib/Passes/CMakeLists.txt | 1 + lib/Passes/PassPlugin.cpp | 50 +++++++++ test/Transforms/InstCombine/fcmp.ll | 200 ++++++++++++++++++++++-------------- test/Transforms/InstCombine/fma.ll | 24 +++++ test/Transforms/InstCombine/fmul.ll | 91 +++++++++++++--- tools/opt/NewPMDriver.cpp | 17 +++ unittests/CMakeLists.txt | 1 + unittests/Passes/CMakeLists.txt | 18 ++++ unittests/Passes/PluginsTest.cpp | 53 ++++++++++ unittests/Passes/TestPlugin.cxx | 39 +++++++ unittests/Passes/TestPlugin.h | 2 + 13 files changed, 539 insertions(+), 89 deletions(-) create mode 100644 include/llvm/Passes/PassPlugin.h create mode 100644 lib/Passes/PassPlugin.cpp create mode 100644 unittests/Passes/CMakeLists.txt create mode 100644 unittests/Passes/PluginsTest.cpp create mode 100644 unittests/Passes/TestPlugin.cxx create mode 100644 unittests/Passes/TestPlugin.h