This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from d800c2eba50 [x86] add tests for PR34217; NFC
new a9fc8d291ae [GlobalISel] Only build expensive remarks if they're enabled. 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:
lib/CodeGen/GlobalISel/IRTranslator.cpp | 16 ++++++++++------
lib/CodeGen/GlobalISel/Utils.cpp | 5 ++++-
2 files changed, 14 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 compiler-rt.
from 6a0bc1fdc [cmake] Make it possible to build and test profile without sa [...]
new 3a6c8910a [ubsan] Fix interface_symbols_windows test
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/ubsan/ubsan_interface.inc | 2 ++
.../Darwin/{interface_symbols_darwin.c => interface_symbols_darwin.cc} | 3 +--
.../Linux/{interface_symbols_linux.c => interface_symbols_linux.cc} | 3 +--
.../{interface_symbols_windows.c => interface_symbols_windows.cc} | 1 +
4 files changed, 5 insertions(+), 4 deletions(-)
rename test/asan/TestCases/Darwin/{interface_symbols_darwin.c => interface_symbols [...]
rename test/asan/TestCases/Linux/{interface_symbols_linux.c => interface_symbols_l [...]
rename test/asan/TestCases/Windows/{interface_symbols_windows.c => interface_symbo [...]
--
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 gcc-7-branch
in repository gcc.
from 6bdc021ec26 2017-09-18 Richard Biener <rguenther(a)suse.de>
new 27017060ac5 PR c++/81525 - wrong constant value with generic lambda
new 321cfb7b745 PR c++/81671 - nullptr_t template parameter
new cb387e41e4c PR c++/80935 - wrong C++17 error with lambda
new 1f33dfaf7de PR c++/78840 - ICE with const and nested generic lambda
new 01fce959009 PR c++/80767 - unnecessary instantiation of generic lambda
new 0acce2b658c PR c++/81236 - ICE with template-id in generic lambda
The 6 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/cp/ChangeLog | 25 ++++++++++++++++++++++
gcc/cp/call.c | 17 ++++++++++++---
gcc/cp/cp-tree.h | 2 +-
gcc/cp/decl.c | 7 +++---
gcc/cp/parser.c | 9 ++------
gcc/cp/pt.c | 14 +++++++++++-
gcc/cp/semantics.c | 8 ++++---
gcc/testsuite/g++.dg/cpp0x/lambda/lambda-conv12.C | 18 ++++++++++++++++
gcc/testsuite/g++.dg/cpp0x/nullptr39.C | 15 +++++++++++++
gcc/testsuite/g++.dg/cpp1y/lambda-generic-const4.C | 20 +++++++++++++++++
gcc/testsuite/g++.dg/cpp1y/lambda-generic-const5.C | 17 +++++++++++++++
gcc/testsuite/g++.dg/cpp1y/lambda-generic-this1.C | 17 +++++++++++++++
gcc/testsuite/g++.dg/cpp1y/lambda-generic-this1a.C | 17 +++++++++++++++
gcc/testsuite/g++.dg/cpp1z/constexpr-lambda16.C | 15 +++++++++++++
gcc/testsuite/g++.dg/cpp1z/lambda-inherit1.C | 23 ++++++++++++++++++++
15 files changed, 206 insertions(+), 18 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-conv12.C
create mode 100644 gcc/testsuite/g++.dg/cpp0x/nullptr39.C
create mode 100644 gcc/testsuite/g++.dg/cpp1y/lambda-generic-const4.C
create mode 100644 gcc/testsuite/g++.dg/cpp1y/lambda-generic-const5.C
create mode 100644 gcc/testsuite/g++.dg/cpp1y/lambda-generic-this1.C
create mode 100644 gcc/testsuite/g++.dg/cpp1y/lambda-generic-this1a.C
create mode 100644 gcc/testsuite/g++.dg/cpp1z/constexpr-lambda16.C
create mode 100644 gcc/testsuite/g++.dg/cpp1z/lambda-inherit1.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 gcc-5-branch
in repository gcc.
from 05d550b5ff7 2017-09-18 Richard Biener <rguenther(a)suse.de>
new 9416284fe4e PR c++/55922 - list-value-initialization of base
new e61bc112cd6 PR c++/72457 - ICE with list-value-initialized base.
new 8592f349518 PR c++/79607 - ICE with T{} initializer
new 0f05930bc84 PR c++/80294 - ICE with constexpr and inheritance.
The 4 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/cp/ChangeLog | 20 ++++++++++++++++++++
gcc/cp/constexpr.c | 20 ++++++++++++++------
gcc/cp/decl.c | 3 +++
gcc/cp/init.c | 13 +++++++++++++
gcc/testsuite/g++.dg/cpp0x/constexpr-list1.C | 15 +++++++++++++++
gcc/testsuite/g++.dg/cpp0x/initlist-base2.C | 21 +++++++++++++++++++++
gcc/testsuite/g++.dg/cpp0x/initlist-base3.C | 17 +++++++++++++++++
gcc/testsuite/g++.dg/cpp1y/constexpr-empty3.C | 14 ++++++++++++++
gcc/testsuite/g++.dg/template/init11.C | 9 +++++++++
9 files changed, 126 insertions(+), 6 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-list1.C
create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist-base2.C
create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist-base3.C
create mode 100644 gcc/testsuite/g++.dg/cpp1y/constexpr-empty3.C
create mode 100644 gcc/testsuite/g++.dg/template/init11.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 lld.
from 164ae3b60 [ELF] - Fix comment. NFC.
new 5967d3a66 [ELF] Remove default argument for lambda.
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:
ELF/Writer.cpp | 14 +++++++-------
1 file changed, 7 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 compiler-rt.
from f951abe99 [scudo] Android build support
new 6a0bc1fdc [cmake] Make it possible to build and test profile without sa [...]
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/CMakeLists.txt | 2 ++
test/CMakeLists.txt | 3 ++-
2 files changed, 4 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 llvm.
from d7c4504964b [X86][AVX] Improve (i8 bitcast (v8i1 x)) handling for 256-b [...]
new d800c2eba50 [x86] add tests for PR34217; 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:
test/CodeGen/X86/stores-merging.ll | 215 ++++++++++++++++++++++++++++++++++++-
1 file changed, 214 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 llvm.
from fe612a2f7fb [x86] regenerate checks; NFC
new d7c4504964b [X86][AVX] Improve (i8 bitcast (v8i1 x)) handling for 256-b [...]
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 | 2 +-
test/CodeGen/X86/bitcast-setcc-256.ll | 30 +++++++++---------------------
2 files changed, 10 insertions(+), 22 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 1c57101b479 Move computation of SLP_TREE_NUMBER_OF_VEC_STMTS
new 20c4114f15d PR c++/82069 - ICE with lambda in template
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/cp/ChangeLog | 6 ++++++
gcc/cp/semantics.c | 3 +--
gcc/testsuite/g++.dg/cpp0x/lambda/lambda-template15.C | 11 +++++++++++
3 files changed, 18 insertions(+), 2 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-template15.C
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.