This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from ae40630a7b6 [NFC][ARM] Refactor macro fusion new b325eb110ca [Intrinsic] Signed Saturation Addition Intrinsic new db949a77216 [LTO] Call InitLLVM from llvm-lto2
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: include/llvm/CodeGen/ISDOpcodes.h | 8 + include/llvm/CodeGen/TargetLowering.h | 5 + include/llvm/IR/Intrinsics.td | 6 + include/llvm/Target/TargetSelectionDAG.td | 2 + lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 8 + lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp | 39 ++++ lib/CodeGen/SelectionDAG/LegalizeTypes.h | 2 + lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | 1 + lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp | 3 + lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 6 + lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | 2 + lib/CodeGen/SelectionDAG/TargetLowering.cpp | 43 ++++ lib/CodeGen/TargetLoweringBase.cpp | 1 + lib/IR/Verifier.cpp | 9 + test/CodeGen/X86/sadd_sat.ll | 267 ++++++++++++++++++++++ test/ThinLTO/X86/deadstrip.ll | 8 +- tools/llvm-lto2/llvm-lto2.cpp | 2 + 17 files changed, 409 insertions(+), 3 deletions(-) create mode 100644 test/CodeGen/X86/sadd_sat.ll