This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from a3459cf [X86] Strengthen some SDNode type constraints.
new 3409bf2 [AVX-512] Add execution domain fixing for logical operations [...]
new dddb19d [AVX-512] Add more patterns for masked and broadcasted logica [...]
new 5b553d0 [AVX-512] Remove floating point logical operation instrinsics [...]
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/IR/IntrinsicsX86.td | 76 -----------
lib/IR/AutoUpgrade.cpp | 37 +++++
lib/Target/X86/X86InstrAVX512.td | 267 +++++++++----------------------------
lib/Target/X86/X86InstrInfo.cpp | 80 +++++++++++
lib/Target/X86/X86IntrinsicsInfo.h | 24 ----
test/CodeGen/X86/avx512-arith.ll | 83 ++++++++----
test/CodeGen/X86/avx512-logic.ll | 26 ++--
test/CodeGen/X86/vec_fabs.ll | 12 +-
8 files changed, 258 insertions(+), 347 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 08f7f18 [Docs] Fix another typo in the Error/Expected docs.
new 8f635c0 [AVX-512] Add NoVLX Predicates to some patterns so they don't [...]
new a3459cf [X86] Strengthen some SDNode type constraints.
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:
lib/Target/X86/X86InstrAVX512.td | 2 ++
lib/Target/X86/X86InstrFragmentsSIMD.td | 7 ++++---
2 files changed, 6 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 af1f616 Add missing &. NFC.
new 62c102c [ORC] Fix some missing fields in OrcRemoteTargetClient's move [...]
new 8ebfd86 [Docs] Fix a couple of typos in the Error/Expected docs.
new 08f7f18 [Docs] Fix another typo in the Error/Expected docs.
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:
docs/ProgrammersManual.rst | 12 ++++++------
include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h | 3 ++-
2 files changed, 8 insertions(+), 7 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 b7a37e9 [PowerPC] hasAndNotCompare should return true
new af1f616 Add missing &. NFC.
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/ADT/SmallVector.h | 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 f931a64 [lit] Fail testing if a googletest executable crashes during [...]
new b7a37e9 [PowerPC] hasAndNotCompare should return true
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/PowerPC/PPCISelLowering.h | 4 ++++
test/CodeGen/PowerPC/andc.ll | 45 ++++++++++++++++++++----------------
2 files changed, 29 insertions(+), 20 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 clang-tools-extra.
from 99b6eb3 Revert https://reviews.llvm.org/D23279 because the tests have [...]
new 3951c8f Add clang-reorder-fields to clang-tools-extra
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:
CMakeLists.txt | 1 +
.../CMakeLists.txt | 7 +-
clang-reorder-fields/ReorderFieldsAction.cpp | 264 +++++++++++++++++++++
clang-reorder-fields/ReorderFieldsAction.h | 47 ++++
clang-reorder-fields/tool/CMakeLists.txt | 12 +
clang-reorder-fields/tool/ClangReorderFields.cpp | 93 ++++++++
test/CMakeLists.txt | 1 +
.../AggregatePartialInitialization.cpp | 14 ++
test/clang-reorder-fields/CStructAmbiguousName.cpp | 18 ++
test/clang-reorder-fields/CStructFieldsOrder.cpp | 16 ++
.../ClassDifferentFieldsAccesses.cpp | 16 ++
.../ClassMixedInitialization.cpp | 24 ++
test/clang-reorder-fields/ClassSimpleCtor.cpp | 24 ++
13 files changed, 532 insertions(+), 5 deletions(-)
copy {clang-rename => clang-reorder-fields}/CMakeLists.txt (59%)
create mode 100644 clang-reorder-fields/ReorderFieldsAction.cpp
create mode 100644 clang-reorder-fields/ReorderFieldsAction.h
create mode 100644 clang-reorder-fields/tool/CMakeLists.txt
create mode 100644 clang-reorder-fields/tool/ClangReorderFields.cpp
create mode 100644 test/clang-reorder-fields/AggregatePartialInitialization.cpp
create mode 100644 test/clang-reorder-fields/CStructAmbiguousName.cpp
create mode 100644 test/clang-reorder-fields/CStructFieldsOrder.cpp
create mode 100644 test/clang-reorder-fields/ClassDifferentFieldsAccesses.cpp
create mode 100644 test/clang-reorder-fields/ClassMixedInitialization.cpp
create mode 100644 test/clang-reorder-fields/ClassSimpleCtor.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 9f423e5 [PowerPC] Add a pattern for a runtime bit check
new f931a64 [lit] Fail testing if a googletest executable crashes during [...]
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:
utils/lit/lit/formats/googletest.py | 3 ++-
utils/lit/lit/util.py | 5 ++++-
2 files changed, 6 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 fa2c5e7 revert r280429 and r280425:
new 9f423e5 [PowerPC] Add a pattern for a runtime bit check
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/PowerPC/PPCInstrInfo.td | 40 ++++++++++++++++++++++++++++
test/CodeGen/PowerPC/shift-cmp.ll | 54 ++++++++++++++++++++++++++++++++++++++
2 files changed, 94 insertions(+)
create mode 100644 test/CodeGen/PowerPC/shift-cmp.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 gcc.
from 5510c0a Daily bump.
new 4e91a07 PR tree-optimization/71831 - __builtin_object_size poor resul [...]
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 | 17 ++
gcc/builtins.c | 7 +-
gcc/doc/extend.texi | 11 +-
gcc/testsuite/ChangeLog | 6 +
gcc/testsuite/gcc.dg/builtin-object-size-16.c | 201 ++++++++++++++++++
gcc/testsuite/gcc.dg/builtin-object-size-17.c | 158 ++++++++++++++
gcc/tree-object-size.c | 291 +++++++++++++++-----------
gcc/tree-object-size.h | 2 +-
gcc/ubsan.c | 4 +-
9 files changed, 563 insertions(+), 134 deletions(-)
create mode 100644 gcc/testsuite/gcc.dg/builtin-object-size-16.c
create mode 100644 gcc/testsuite/gcc.dg/builtin-object-size-17.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 llvm.
from 6cae2f1 revert r280432:
new fa2c5e7 revert r280429 and r280425:
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/Transforms/Utils/LoopUtils.h | 10 +------
lib/Transforms/Scalar/LICM.cpp | 46 ++++++++++++++++---------------
2 files changed, 25 insertions(+), 31 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.