This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 4fde77f8f1a [PM] Teach the PGO instrumentation pasess to run GlobalDCE [...] new 9693a6db681 [GVNSink] GVNSink pass
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: include/llvm/InitializePasses.h | 1 + include/llvm/Transforms/Scalar.h | 7 + include/llvm/Transforms/Scalar/GVN.h | 7 +- include/llvm/Transforms/Utils/Local.h | 8 + lib/Transforms/IPO/PassManagerBuilder.cpp | 9 + lib/Transforms/Scalar/CMakeLists.txt | 1 + lib/Transforms/Scalar/GVNSink.cpp | 870 +++++++++++++++++++++ lib/Transforms/Scalar/Scalar.cpp | 1 + lib/Transforms/Utils/Local.cpp | 45 ++ lib/Transforms/Utils/SimplifyCFG.cpp | 47 -- test/Transforms/GVNSink/dither.ll | 42 + test/Transforms/GVNSink/indirect-call.ll | 70 ++ .../{SimplifyCFG => GVNSink}/sink-common-code.ll | 207 +---- test/Transforms/GVNSink/struct.ll | 71 ++ 14 files changed, 1170 insertions(+), 216 deletions(-) create mode 100644 lib/Transforms/Scalar/GVNSink.cpp create mode 100644 test/Transforms/GVNSink/dither.ll create mode 100644 test/Transforms/GVNSink/indirect-call.ll copy test/Transforms/{SimplifyCFG => GVNSink}/sink-common-code.ll (77%) create mode 100644 test/Transforms/GVNSink/struct.ll