This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 55c8c00 [llvm-cov] Add support for creating html reports new d5975bb [X86] Transform setcc + movzbl into xorl + setcc new 5293241 Add testing coverage for r274582. new 0e9a272 Minor formatting change, NFC
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: lib/Target/X86/CMakeLists.txt | 1 + lib/Target/X86/X86.h | 3 + lib/Target/X86/X86FixupSetCC.cpp | 183 +++++++++++++++++++++++ lib/Target/X86/X86TargetMachine.cpp | 3 +- test/CodeGen/AArch64/arm64-collect-loh.ll | 21 +++ test/CodeGen/X86/2008-08-17-UComiCodeGenBug.ll | 2 +- test/CodeGen/X86/2008-09-11-CoalescerBug2.ll | 2 +- test/CodeGen/X86/avx-intrinsics-fast-isel.ll | 40 +++--- test/CodeGen/X86/avx-intrinsics-x86.ll | 192 ++++++++++++++----------- test/CodeGen/X86/avx512-cmp.ll | 4 +- test/CodeGen/X86/avx512-intrinsics.ll | 2 +- test/CodeGen/X86/avx512-mask-op.ll | 2 +- test/CodeGen/X86/bmi.ll | 4 +- test/CodeGen/X86/cmov.ll | 4 +- test/CodeGen/X86/cmp.ll | 4 +- test/CodeGen/X86/cmpxchg-i1.ll | 6 +- test/CodeGen/X86/cmpxchg-i128-i1.ll | 4 +- test/CodeGen/X86/ctpop-combine.ll | 12 +- test/CodeGen/X86/fp128-cast.ll | 5 +- test/CodeGen/X86/fp128-compare.ll | 31 ++-- test/CodeGen/X86/mcinst-lowering.ll | 15 +- test/CodeGen/X86/return-ext.ll | 10 +- test/CodeGen/X86/setcc-narrowing.ll | 4 +- test/CodeGen/X86/setcc.ll | 2 +- test/CodeGen/X86/sse-intrinsics-fast-isel.ll | 32 ++--- test/CodeGen/X86/sse-intrinsics-x86.ll | 32 ++--- test/CodeGen/X86/sse2-intrinsics-fast-isel.ll | 32 ++--- test/CodeGen/X86/sse2-intrinsics-x86.ll | 32 ++--- test/CodeGen/X86/sse41-intrinsics-fast-isel.ll | 16 +-- test/CodeGen/X86/sse41-intrinsics-x86.ll | 8 +- test/CodeGen/X86/sse41.ll | 8 +- test/CodeGen/X86/sse42-intrinsics-fast-isel.ll | 72 ++++++---- test/CodeGen/X86/sse42-intrinsics-x86.ll | 44 +++--- tools/llvm-cov/SourceCoverageViewText.cpp | 10 +- 34 files changed, 547 insertions(+), 295 deletions(-) create mode 100644 lib/Target/X86/X86FixupSetCC.cpp