This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 099dbf6ec0b [GlobalISel][CallLowering] Rename isArgumentHandler() -> is [...] new c8d64a62c9d [Attributor] Deduce the "no-return" attribute for functions new a8052846cec [Attributor][NFCI] Avoid duplication of the InformationCach [...] new 9f49baf4d57 [Attributor] Use proper ID for attribute lookup
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/LangRef.rst | 5 +- include/llvm/Transforms/IPO/Attributor.h | 168 +++++----- lib/Transforms/IPO/Attributor.cpp | 357 +++++++++++++-------- test/Transforms/FunctionAttrs/arg_nocapture.ll | 12 +- test/Transforms/FunctionAttrs/arg_returned.ll | 10 +- test/Transforms/FunctionAttrs/fn_noreturn.ll | 38 +-- test/Transforms/FunctionAttrs/liveness.ll | 2 +- test/Transforms/FunctionAttrs/nofree-attributor.ll | 13 +- test/Transforms/FunctionAttrs/nonnull.ll | 24 +- test/Transforms/FunctionAttrs/noreturn_async.ll | 142 ++++++++ test/Transforms/FunctionAttrs/noreturn_sync.ll | 138 ++++++++ test/Transforms/FunctionAttrs/nosync.ll | 10 +- test/Transforms/FunctionAttrs/nounwind.ll | 4 +- test/Transforms/FunctionAttrs/willreturn.ll | 30 +- 14 files changed, 656 insertions(+), 297 deletions(-) create mode 100644 test/Transforms/FunctionAttrs/noreturn_async.ll create mode 100644 test/Transforms/FunctionAttrs/noreturn_sync.ll