This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang.
from baa8d90 Add better ODR checking for modules.
new e7c5d7b Improve fix for PR28739
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/clang/Basic/DiagnosticASTKinds.td | 3 +-
lib/AST/ExprConstant.cpp | 156 ++++++++++++++++-------------
test/Sema/const-eval.c | 17 ++--
test/SemaCXX/constant-expression-cxx11.cpp | 22 +++-
test/SemaCXX/constant-expression-cxx1y.cpp | 2 +-
5 files changed, 114 insertions(+), 86 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 35b092a InferAddressSpaces: Support memory intrinsics
new 1c8955e [X86] Use integer broadcast instructions for integer broadcas [...]
new e45c0bf [X86] Remove 'else' after 'return'. NFC
new afa112a [X86] Remove patterns for selecting PSHUFD with FP types. We [...]
new 98925ea [X86] Remove duplicate patterns for X86VPermilpv that already [...]
new 3a54f7a [X86] Remove patterns for X86VPermilpi with integer types. I [...]
new 1394a16 InferAddressSpaces: Handle icmp
new 6a569f5 InferAddressSpaces: Rename constant
The 7 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 | 2 +-
lib/Target/X86/X86InstrSSE.td | 64 +---------
lib/Transforms/Scalar/InferAddressSpaces.cpp | 84 ++++++++++--
test/Transforms/InferAddressSpaces/AMDGPU/icmp.ll | 142 +++++++++++++++++++++
.../AMDGPU/infer-address-space.ll | 7 +-
5 files changed, 221 insertions(+), 78 deletions(-)
create mode 100644 test/Transforms/InferAddressSpaces/AMDGPU/icmp.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 llvm.
from 6be6791 InferAddressSpaces: Support atomics
new 35b092a InferAddressSpaces: Support memory intrinsics
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/Transforms/Scalar/InferAddressSpaces.cpp | 160 +++++++++++++++++++--
.../InferAddressSpaces/AMDGPU/intrinsics.ll | 92 ++++++++++++
.../InferAddressSpaces/AMDGPU/mem-intrinsics.ll | 134 +++++++++++++++++
.../InferAddressSpaces/AMDGPU/volatile.ll | 24 +++-
4 files changed, 395 insertions(+), 15 deletions(-)
create mode 100644 test/Transforms/InferAddressSpaces/AMDGPU/intrinsics.ll
create mode 100644 test/Transforms/InferAddressSpaces/AMDGPU/mem-intrinsics.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 compiler-rt.
from fe1f3f3 [sanitizer] Re-enable -fno-function-sections for powerpc64le
new 1490662 [compiler-rt] Don't change g_tls_size after initialization.
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/sanitizer_common/sanitizer_linux_libcdep.cc | 6 +++---
1 file changed, 3 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 de6cb7e InferAddressSpaces: Don't replace volatile users
new 6be6791 InferAddressSpaces: Support atomics
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/Transforms/Scalar/InferAddressSpaces.cpp | 60 ++++++++++++++++------
test/Transforms/InferAddressSpaces/AMDGPU/basic.ll | 42 +++++++++++++++
.../InferAddressSpaces/AMDGPU/volatile.ll | 36 +++++++++++++
3 files changed, 122 insertions(+), 16 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.
from 1db5d32 Re-apply "[ubsan] Sanity-check shift amounts before truncation"
new baa8d90 Add better ODR checking for modules.
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/clang/AST/DeclCXX.h | 6 +
include/clang/AST/ODRHash.h | 80 ++
include/clang/AST/Stmt.h | 3 +
.../clang/Basic/DiagnosticSerializationKinds.td | 64 ++
lib/AST/CMakeLists.txt | 1 +
lib/AST/DeclCXX.cpp | 15 +-
lib/AST/ODRHash.cpp | 892 ++++++++++++++++
lib/AST/StmtProfile.cpp | 229 +++--
lib/Sema/SemaDecl.cpp | 5 +-
lib/Serialization/ASTReader.cpp | 638 +++++++++++-
lib/Serialization/ASTReaderDecl.cpp | 2 +
lib/Serialization/ASTWriter.cpp | 1 +
test/Modules/merge-using-decls.cpp | 4 +
test/Modules/odr_hash.cpp | 1077 ++++++++++++++++++++
14 files changed, 2920 insertions(+), 97 deletions(-)
create mode 100644 include/clang/AST/ODRHash.h
create mode 100644 lib/AST/ODRHash.cpp
create mode 100644 test/Modules/odr_hash.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 264e91f AMDGPU: Implement hook for InferAddressSpaces
new de6cb7e InferAddressSpaces: Don't replace volatile users
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/Transforms/Scalar/InferAddressSpaces.cpp | 7 +-
.../InferAddressSpaces/AMDGPU/volatile.ll | 82 ++++++++++++++++++++++
2 files changed, 87 insertions(+), 2 deletions(-)
create mode 100644 test/Transforms/InferAddressSpaces/AMDGPU/volatile.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 lld.
from e147624 Add missing aarch64 requirement.
new 892b4ad Make the test future proof.
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/ELF/merge-string.s | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 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 9be0983 NVPTX: Move InferAddressSpaces to generic code
new 264e91f AMDGPU: Implement hook for InferAddressSpaces
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/AMDGPUSubtarget.h | 8 +-
lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h | 12 +-
test/Transforms/InferAddressSpaces/AMDGPU/basic.ll | 131 +++++++++++++++
.../AMDGPU/infer-address-space.ll | 176 +++++++++++++++++++++
.../AMDGPU/old-pass-regressions.ll | 143 +++++++++++++++++
.../AMDGPU => InferAddressSpaces}/lit.local.cfg | 0
6 files changed, 465 insertions(+), 5 deletions(-)
create mode 100644 test/Transforms/InferAddressSpaces/AMDGPU/basic.ll
create mode 100644 test/Transforms/InferAddressSpaces/AMDGPU/infer-address-space.ll
create mode 100644 test/Transforms/InferAddressSpaces/AMDGPU/old-pass-regressions.ll
copy test/Transforms/{CodeGenPrepare/AMDGPU => InferAddressSpaces}/lit.local.cfg (100%)
--
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 libcxx.
from 445b823 experimental: avoid using raw _WIN32 in filesystem
new e70b4ec Revert "Adorn __call_once_proxy with `inline` and `_LIBCPP_IN [...]
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/mutex | 1 -
1 file changed, 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.