This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 97e268381d5 [AMDGPU] gfx908 hazard recognizer new 52d4c048b38 [Attributor] Deduce "nosync" function attribute.
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/LangRef.rst | 10 + include/llvm/Bitcode/LLVMBitCodes.h | 3 +- include/llvm/IR/Attributes.td | 3 + include/llvm/Transforms/IPO/Attributor.h | 42 ++- lib/AsmParser/LLLexer.cpp | 1 + lib/AsmParser/LLParser.cpp | 1 + lib/AsmParser/LLToken.h | 1 + lib/Bitcode/Reader/BitcodeReader.cpp | 8 +- lib/Bitcode/Writer/BitcodeWriter.cpp | 2 + lib/IR/Attributes.cpp | 2 + lib/IR/Verifier.cpp | 1 + lib/Transforms/IPO/Attributor.cpp | 193 +++++++++++ lib/Transforms/Utils/CodeExtractor.cpp | 1 + test/Bitcode/attributes.ll | 13 +- test/Transforms/FunctionAttrs/arg_returned.ll | 70 ++-- test/Transforms/FunctionAttrs/fn_noreturn.ll | 10 +- test/Transforms/FunctionAttrs/nosync.ll | 352 +++++++++++++++++++++ test/Transforms/FunctionAttrs/nounwind.ll | 6 +- .../read_write_returned_arguments_scc.ll | 16 +- 19 files changed, 675 insertions(+), 60 deletions(-) create mode 100644 test/Transforms/FunctionAttrs/nosync.ll