This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 1324a94c53c [LoopIdiomRecognize][NFC] Use DEBUG_TYPE, add LLVM_DEBUG() [...] new 3d26f10b859 Revert "IR: add optional type to 'byval' function parameters" new b37f1aa2250 LoopVersioningLICM: Respect convergent and noduplicate
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: docs/LangRef.rst | 5 +- include/llvm/CodeGen/TargetLowering.h | 1 - include/llvm/IR/Argument.h | 3 - include/llvm/IR/Attributes.h | 20 ----- include/llvm/IR/CallSite.h | 5 -- include/llvm/IR/Function.h | 5 -- include/llvm/IR/InstrTypes.h | 5 -- lib/AsmParser/LLParser.cpp | 24 +---- lib/AsmParser/LLParser.h | 1 - lib/Bitcode/Reader/BitcodeReader.cpp | 50 +---------- lib/Bitcode/Writer/BitcodeWriter.cpp | 15 +--- lib/Bitcode/Writer/ValueEnumerator.cpp | 6 +- lib/CodeGen/GlobalISel/CallLowering.cpp | 5 +- lib/CodeGen/SelectionDAG/FastISel.cpp | 8 +- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 18 ++-- lib/CodeGen/SelectionDAG/TargetLowering.cpp | 1 - lib/IR/AttributeImpl.h | 32 +------ lib/IR/Attributes.cpp | 108 +---------------------- lib/IR/Function.cpp | 5 -- lib/IR/Verifier.cpp | 5 -- lib/Transforms/Scalar/LoopVersioningLICM.cpp | 10 ++- test/Assembler/byval-type-attr.ll | 31 ------- test/Assembler/invalid-byval-type1.ll | 4 - test/Assembler/invalid-byval-type2.ll | 4 - test/Assembler/invalid-byval-type3.ll | 4 - test/Bitcode/Inputs/byval-upgrade.bc | Bin 1092 -> 0 bytes test/Bitcode/attributes-3.3.ll | 2 +- test/Bitcode/attributes.ll | 2 +- test/Bitcode/byval-upgrade.test | 7 -- test/Bitcode/compatibility-3.6.ll | 2 +- test/Bitcode/compatibility-3.7.ll | 2 +- test/Bitcode/compatibility-3.8.ll | 2 +- test/Bitcode/compatibility-3.9.ll | 2 +- test/Bitcode/compatibility-4.0.ll | 2 +- test/Bitcode/compatibility-5.0.ll | 2 +- test/Bitcode/compatibility-6.0.ll | 2 +- test/Bitcode/compatibility.ll | 11 +-- test/Bitcode/highLevelStructure.3.2.ll | 4 +- test/CodeGen/AArch64/byval-type.ll | 37 -------- test/Transforms/Inline/byval-tail-call.ll | 4 +- test/Transforms/LoopVersioningLICM/convergent.ll | 97 ++++++++++++++++++++ unittests/IR/AttributesTest.cpp | 20 ----- 42 files changed, 147 insertions(+), 426 deletions(-) delete mode 100644 test/Assembler/byval-type-attr.ll delete mode 100644 test/Assembler/invalid-byval-type1.ll delete mode 100644 test/Assembler/invalid-byval-type2.ll delete mode 100644 test/Assembler/invalid-byval-type3.ll delete mode 100644 test/Bitcode/Inputs/byval-upgrade.bc delete mode 100644 test/Bitcode/byval-upgrade.test delete mode 100644 test/CodeGen/AArch64/byval-type.ll create mode 100644 test/Transforms/LoopVersioningLICM/convergent.ll