This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository lld.
from 6f36a98 Fix SectionPiece size when compiling with MSVC
new a1580ca [ELF][MIPS] Separate calculation of MIPS GOT index and offset [...]
new f3b9bcf [ELF][MIPS] Use getMipsLocalEntriesNum() everywhere we need n [...]
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:
ELF/OutputSections.cpp | 24 ++++++++++++++----------
1 file changed, 14 insertions(+), 10 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 75b11ed Do not fixup edges for a thunk in LTRANS (PR lto/78049)
new e0a20c9 PR target/78037 * config/i386/bmiintrin.h (__tzcnt_u16): Ca [...]
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:
gcc/ChangeLog | 32 +++++++
gcc/config/i386/bmiintrin.h | 10 +-
gcc/config/i386/i386-builtin-types.def | 4 +-
gcc/config/i386/i386-builtin.def | 10 +-
gcc/config/i386/i386.c | 4 +-
gcc/config/i386/i386.md | 158 +++++++++++++++++++++++++++++---
gcc/config/i386/lzcntintrin.h | 10 +-
gcc/testsuite/ChangeLog | 5 +
gcc/testsuite/gcc.target/i386/pr78037.c | 21 +++++
9 files changed, 226 insertions(+), 28 deletions(-)
create mode 100644 gcc/testsuite/gcc.target/i386/pr78037.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang.
from 18aecc3 [Format] Cleanup after replacing constructor body with = default
new 401aab9 [clang-cl] Fix test that shouldn't be running on non-x86
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:
test/Driver/cl-pch.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 928f047 [Target] remove TargetRecip class; 2nd try
new ca13ae1 [CostModel][X86] Added tests for sdiv/udiv costs for uniform [...]
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:
test/Analysis/CostModel/X86/div.ll | 264 +++++++++++++++++++++++++++++++++++++
1 file changed, 264 insertions(+)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository openmp.
from c39d28c [OpenMP] Fix issue with directives used in a macro.
new a92421e Fixed memory leak mistakenly introduced by https://reviews.ll [...]
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:
runtime/src/kmp_tasking.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from c32b596 Put the move ctor for PassManager back for now, it breaks som [...]
new 928f047 [Target] remove TargetRecip class; 2nd try
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:
include/llvm/Target/TargetLowering.h | 63 +++++++---
include/llvm/Target/TargetOptions.h | 1 -
include/llvm/Target/TargetRecip.h | 71 -----------
lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 45 +++++--
lib/CodeGen/TargetLoweringBase.cpp | 206 +++++++++++++++++++++++++++---
lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 10 +-
lib/Target/AMDGPU/AMDGPUISelLowering.h | 10 +-
lib/Target/CMakeLists.txt | 1 -
lib/Target/PowerPC/PPCISelLowering.cpp | 65 +++-------
lib/Target/PowerPC/PPCISelLowering.h | 8 +-
lib/Target/TargetRecip.cpp | 210 -------------------------------
lib/Target/X86/X86ISelLowering.cpp | 71 +++++------
lib/Target/X86/X86ISelLowering.h | 8 +-
13 files changed, 331 insertions(+), 438 deletions(-)
delete mode 100644 include/llvm/Target/TargetRecip.h
delete mode 100644 lib/Target/TargetRecip.cpp
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 99edc4f [CostModel][X86] Fixed AVX1/AVX512 sdiv/udiv general costs fo [...]
new c32b596 Put the move ctor for PassManager back for now, it breaks som [...]
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:
include/llvm/IR/PassManager.h | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 446cd5e [AMDGPU] add fcopysign(f64, f32) pattern
new 99edc4f [CostModel][X86] Fixed AVX1/AVX512 sdiv/udiv general costs fo [...]
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:
lib/Target/X86/X86TargetTransformInfo.cpp | 32 +++++++++-
test/Analysis/CostModel/X86/div.ll | 100 +++++++-----------------------
2 files changed, 54 insertions(+), 78 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from fd82ba5 [Support] Put back the MSVC hack for AlignedCharArray.
new 446cd5e [AMDGPU] add fcopysign(f64, f32) pattern
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:
lib/Target/AMDGPU/AMDGPUInstructions.td | 9 +++++++++
test/CodeGen/AMDGPU/fcopysign.f64.ll | 16 ++++++++++++++++
2 files changed, 25 insertions(+)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.