This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from ac12e1602f7 [x86] add/sub (X==0) --> sbb(cmp X, 1)
new c9d5a52ac18 Fixed a (product) build error that was due to an unused variable
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/X86InterleavedAccess.cpp | 3 +--
1 file changed, 1 insertion(+), 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 c539eea7c6d Restrict the definition of loop preheader to avoid EH blocks
new ac12e1602f7 [x86] add/sub (X==0) --> sbb(cmp X, 1)
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/X86ISelLowering.cpp | 22 +++++++++++++++++-----
test/CodeGen/X86/sbb.ll | 9 +++------
2 files changed, 20 insertions(+), 11 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 lld.
from 56cd0435f [llvm-pdbutil] Rename "raw" to "dump".
new bd884098a [COFF] Fix SECTION and SECREL relocation handling for absolut [...]
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:
COFF/Chunks.cpp | 15 +++++--
COFF/Symbols.cpp | 2 +
COFF/Symbols.h | 5 +++
COFF/Writer.cpp | 6 +++
test/COFF/pdb-secrel-absolute.yaml | 84 ++++++++++++++++++++++++++++++++++++++
test/COFF/secidx-absolute.s | 33 +++++++++++++++
test/COFF/secrel-absolute.s | 14 +++++++
7 files changed, 156 insertions(+), 3 deletions(-)
create mode 100644 test/COFF/pdb-secrel-absolute.yaml
create mode 100644 test/COFF/secidx-absolute.s
create mode 100644 test/COFF/secrel-absolute.s
--
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 e83d2eccefb Supported lowerInterleavedStore() in X86InterleavedAccess.
new e4b1890fdaf Define behavior of "stack-probe-size" attribute when inlining.
new c539eea7c6d Restrict the definition of loop preheader to avoid EH blocks
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 | 15 +++++++++
include/llvm/Analysis/LoopInfoImpl.h | 9 +++--
include/llvm/CodeGen/MachineBasicBlock.h | 3 ++
include/llvm/IR/Attributes.td | 1 +
include/llvm/IR/BasicBlock.h | 3 ++
lib/CodeGen/MachineBasicBlock.cpp | 6 ++++
lib/IR/Attributes.cpp | 30 +++++++++++++++--
lib/IR/BasicBlock.cpp | 13 +++++++
test/Transforms/Inline/inline-stack-probe-size.ll | 29 ++++++++++++++++
test/Transforms/LoopRotate/catchret.ll | 41 +++++++++++++++++++++++
10 files changed, 146 insertions(+), 4 deletions(-)
create mode 100644 test/Transforms/Inline/inline-stack-probe-size.ll
create mode 100755 test/Transforms/LoopRotate/catchret.ll
--
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 glibc.
from f20079d219 Fix float128_private.h redefinition of SET_RESTORE_ROUNDL.
new 8d375dafe2 Support _Float128 in math-tests.h.
new c271ff9469 Support _Float128 in ldbl-96 bits/iscanonical.h.
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:
ChangeLog | 12 +++++++++
sysdeps/generic/math-tests.h | 42 +++++++++++++++++++++---------
sysdeps/ieee754/ldbl-96/bits/iscanonical.h | 3 +++
3 files changed, 45 insertions(+), 12 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 d6dbca43aa5 [x86] add more tests for select --> sbb transform; NFC
new e1ae008085f Remove the LoadCombine pass. It was never enabled and is un [...]
new e83d2eccefb Supported lowerInterleavedStore() in X86InterleavedAccess.
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/InitializePasses.h | 1 -
include/llvm/Transforms/IPO/PassManagerBuilder.h | 1 -
include/llvm/Transforms/Scalar.h | 6 -
lib/Passes/PassBuilder.cpp | 3 -
lib/Target/X86/X86ISelLowering.h | 6 +
lib/Target/X86/X86InterleavedAccess.cpp | 126 ++++++---
lib/Transforms/IPO/PassManagerBuilder.cpp | 11 -
lib/Transforms/Scalar/CMakeLists.txt | 1 -
lib/Transforms/Scalar/LoadCombine.cpp | 295 ---------------------
lib/Transforms/Scalar/Scalar.cpp | 1 -
test/CodeGen/X86/x86-interleaved-access.ll | 92 +++----
.../X86/interleaved-accesses-64bits-avx.ll | 73 ++++-
test/Transforms/LoadCombine/deadcode.ll | 39 ---
test/Transforms/LoadCombine/load-combine-aa.ll | 63 -----
test/Transforms/LoadCombine/load-combine-assume.ll | 44 ---
.../LoadCombine/load-combine-negativegep.ll | 19 --
test/Transforms/LoadCombine/load-combine.ll | 190 -------------
17 files changed, 197 insertions(+), 774 deletions(-)
delete mode 100644 lib/Transforms/Scalar/LoadCombine.cpp
delete mode 100644 test/Transforms/LoadCombine/deadcode.ll
delete mode 100644 test/Transforms/LoadCombine/load-combine-aa.ll
delete mode 100644 test/Transforms/LoadCombine/load-combine-assume.ll
delete mode 100644 test/Transforms/LoadCombine/load-combine-negativegep.ll
delete mode 100644 test/Transforms/LoadCombine/load-combine.ll
--
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 glibc.
from d08cdabdd0 Correct min_of_type handling of _Float128.
new db7a548d02 Make float128_private.h work with generic ieee754.h.
new f20079d219 Fix float128_private.h redefinition of SET_RESTORE_ROUNDL.
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:
ChangeLog | 7 +++++++
sysdeps/ieee754/float128/float128_private.h | 6 +++++-
2 files changed, 12 insertions(+), 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 lnt.
from 213733d Further cache invalidation fixes
new 29d6ce5 Give testsuitedb a nice text version
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:
lnt/server/db/testsuitedb.py | 3 +++
1 file changed, 3 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 glibc.
from 33711da4e9 Fix float128 uses of xlocale.h.
new 46d2e49c49 Make errno-setting libm templates include errno.h.
new d08cdabdd0 Correct min_of_type handling of _Float128.
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:
ChangeLog | 29 +++++++++++++++++++++++++++++
math/w_acos_template.c | 1 +
math/w_acosh_template.c | 1 +
math/w_asin_template.c | 1 +
math/w_atanh_template.c | 1 +
math/w_cosh_template.c | 1 +
math/w_exp10_template.c | 1 +
math/w_exp2_template.c | 1 +
math/w_exp_template.c | 1 +
math/w_fmod_template.c | 1 +
math/w_hypot_template.c | 1 +
math/w_j0_template.c | 1 +
math/w_j1_template.c | 1 +
math/w_jn_template.c | 1 +
math/w_lgamma_r_template.c | 1 +
math/w_lgamma_template.c | 1 +
math/w_log10_template.c | 1 +
math/w_log2_template.c | 1 +
math/w_log_template.c | 1 +
math/w_pow_template.c | 1 +
math/w_remainder_template.c | 1 +
math/w_sinh_template.c | 1 +
math/w_sqrt_template.c | 1 +
math/w_tgamma_template.c | 1 +
sysdeps/generic/math_private.h | 4 ++--
25 files changed, 54 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 glibc.
from 5dee08fda6 Add ChangeLog entries for the last 3 commits
new 33711da4e9 Fix float128 uses of xlocale.h.
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:
ChangeLog | 7 +++++++
sysdeps/ieee754/float128/strtof128_l.c | 2 +-
sysdeps/ieee754/float128/wcstof128.c | 2 +-
sysdeps/ieee754/float128/wcstof128_l.c | 2 +-
4 files changed, 10 insertions(+), 3 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.