This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from e64aa7c573e [DAGCombiner] Add X / X -> 1 & X % X -> 0 folds (test tweaks) new 6065bc07699 [DAGCombiner] Add X / X -> 1 & X % X -> 0 folds new 3b08dd1f3f0 [mips] Add missing instructions new 68de447e4fc [NFC] Unify guards detection
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: include/llvm/Transforms/Utils/GuardUtils.h | 4 + lib/Analysis/AliasSetTracker.cpp | 4 +- lib/Analysis/ValueTracking.cpp | 4 +- lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 19 +++- lib/Target/Mips/MipsInstrFPU.td | 32 +++++++ lib/Transforms/Scalar/EarlyCSE.cpp | 3 +- lib/Transforms/Scalar/GuardWidening.cpp | 7 +- lib/Transforms/Scalar/JumpThreading.cpp | 6 +- lib/Transforms/Scalar/LICM.cpp | 3 +- lib/Transforms/Scalar/LowerGuardIntrinsic.cpp | 6 +- lib/Transforms/Utils/GuardUtils.cpp | 6 ++ test/CodeGen/X86/combine-sdiv.ll | 102 ++++---------------- test/CodeGen/X86/combine-srem.ll | 52 +---------- test/CodeGen/X86/combine-udiv.ll | 103 +++------------------ test/CodeGen/X86/combine-urem.ll | 44 +-------- .../Disassembler/Mips/mips32r2/valid-fp64-el.txt | 7 ++ test/MC/Disassembler/Mips/mips32r2/valid-fp64.txt | 7 ++ .../Disassembler/Mips/mips32r3/valid-fp64-el.txt | 7 ++ test/MC/Disassembler/Mips/mips32r3/valid-fp64.txt | 7 ++ .../Disassembler/Mips/mips32r5/valid-fp64-el.txt | 7 ++ test/MC/Disassembler/Mips/mips32r5/valid-fp64.txt | 7 ++ test/MC/Mips/mips1/invalid-mips5-wrong-error.s | 5 - test/MC/Mips/mips1/invalid-mips5.s | 5 + test/MC/Mips/mips2/invalid-mips5-wrong-error.s | 5 - test/MC/Mips/mips2/invalid-mips5.s | 5 + test/MC/Mips/mips3/invalid-mips5-wrong-error.s | 5 - test/MC/Mips/mips3/invalid-mips5.s | 5 + test/MC/Mips/mips4/invalid-mips5-wrong-error.s | 5 - test/MC/Mips/mips4/invalid-mips5.s | 5 + test/MC/Mips/mips64r2/valid-xfail.s | 5 - test/MC/Mips/mips64r2/valid.s | 10 ++ test/MC/Mips/mips64r3/valid-xfail.s | 5 - test/MC/Mips/mips64r3/valid.s | 10 ++ test/MC/Mips/mips64r5/valid-xfail.s | 5 - test/MC/Mips/mips64r5/valid.s | 10 ++ test/MC/Mips/mips64r6/invalid-mips5-wrong-error.s | 3 - 36 files changed, 208 insertions(+), 317 deletions(-)