This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 1bd1f14 [docs] Add sub-mod example by Chris to GitHub proposal new 8801905 [coroutines] Part 3 of N: Adding Boilerplate for Coroutine Passes
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: docs/Coroutines.rst | 4 +- include/llvm/InitializePasses.h | 3 ++ include/llvm/Transforms/Coroutines.h | 38 +++++++++++++++ lib/Transforms/CMakeLists.txt | 1 + lib/Transforms/Coroutines/CMakeLists.txt | 8 ++++ lib/Transforms/Coroutines/CoroCleanup.cpp | 42 +++++++++++++++++ lib/Transforms/Coroutines/CoroEarly.cpp | 43 +++++++++++++++++ lib/Transforms/Coroutines/CoroElide.cpp | 49 +++++++++++++++++++ lib/Transforms/Coroutines/CoroInternal.h | 28 +++++++++++ lib/Transforms/Coroutines/CoroSplit.cpp | 45 ++++++++++++++++++ lib/Transforms/Coroutines/Coroutines.cpp | 68 +++++++++++++++++++++++++++ lib/Transforms/{ => Coroutines}/LLVMBuild.txt | 12 ++--- lib/Transforms/LLVMBuild.txt | 2 +- test/Transforms/Coroutines/smoketest.ll | 24 ++++++++++ tools/opt/CMakeLists.txt | 1 + tools/opt/opt.cpp | 10 ++++ 16 files changed, 368 insertions(+), 10 deletions(-) create mode 100644 include/llvm/Transforms/Coroutines.h create mode 100644 lib/Transforms/Coroutines/CMakeLists.txt create mode 100644 lib/Transforms/Coroutines/CoroCleanup.cpp create mode 100644 lib/Transforms/Coroutines/CoroEarly.cpp create mode 100644 lib/Transforms/Coroutines/CoroElide.cpp create mode 100644 lib/Transforms/Coroutines/CoroInternal.h create mode 100644 lib/Transforms/Coroutines/CoroSplit.cpp create mode 100644 lib/Transforms/Coroutines/Coroutines.cpp copy lib/Transforms/{ => Coroutines}/LLVMBuild.txt (73%) create mode 100644 test/Transforms/Coroutines/smoketest.ll