This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 946f2ae [MSSA] Remove useless assert. NFC.
new 21c0ab8 [MSSA] Make EXPENSIVE_CHECKS check more.
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/Utils/MemorySSA.cpp | 24 +++++++++++-------------
1 file changed, 11 insertions(+), 13 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 libcxx.
from d757090 Skip chash computation in insert/emplace if the unconstrained [...]
new b90f9db Start adding benchmarks for vector
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:
benchmarks/ContainerBenchmarks.hpp | 13 ++++++++++++-
benchmarks/vector_operations.bench.cpp | 32 ++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+), 1 deletion(-)
create mode 100644 benchmarks/vector_operations.bench.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 libcxx.
from 8b5233f Make pair/tuples assignment operators SFINAE properly.
new d757090 Skip chash computation in insert/emplace if the unconstrained [...]
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:
benchmarks/ContainerBenchmarks.hpp | 32 ++++++++++++++++++++++
benchmarks/GenerateInput.hpp | 7 +++++
benchmarks/unordered_set_operations.bench.cpp | 38 +++++++++++++++++++++++++++
include/__hash_table | 2 +-
4 files changed, 78 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 libcxx.
from 678bf67 Fix memory leak in test.
new 8b5233f Make pair/tuples assignment operators SFINAE properly.
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/tuple | 22 ++++++
include/utility | 21 +++--
.../tuple/tuple.tuple/tuple.assign/copy.pass.cpp | 49 ++++++++++++
.../tuple/tuple.tuple/tuple.assign/move.pass.cpp | 69 +++++++++++++++++
.../utility/pairs/pairs.pair/assign_pair.pass.cpp | 90 ++++++++++++++++++++++
.../pairs/pairs.pair/assign_rv_pair.pass.cpp | 68 +++++++++++++++-
6 files changed, 312 insertions(+), 7 deletions(-)
create mode 100644 test/std/utilities/utility/pairs/pairs.pair/assign_pair.pass.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 libcxx.
from e1a41a9 Implement LWG 2393. Check for LValue-callability.
new 678bf67 Fix memory leak in 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:
.../specialized.algorithms/specialized.destroy/destroy_at.pass.cpp | 4 ++++
1 file changed, 4 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 libcxx.
from 7f630e8 Implement LWG2328. Rvalue stream extraction should perfect forward.
new e1a41a9 Implement LWG 2393. Check for LValue-callability.
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:
.../func.wrap.func/func.wrap.func.con/F.pass.cpp | 21 ++++++++++++++++++++
.../func.wrap.func.con/F_assign.pass.cpp | 21 ++++++++++++++++++++
.../func.wrap.func.con/alloc_F.pass.cpp | 23 ++++++++++++++++++++++
www/cxx1z_status.html | 2 +-
4 files changed, 66 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 libcxx.
from c672a74 Implement P0040r3: Extending memory management tools
new 7f630e8 Implement LWG2328. Rvalue stream extraction should perfect forward.
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/istream | 4 ++--
.../input.streams/istream.rvalue/rvalue.pass.cpp | 21 +++++++++++++++------
www/cxx1z_status.html | 2 +-
3 files changed, 18 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 libcxx.
from eef85d9 Implement the in_place tags from p0032r3.
new c672a74 Implement P0040r3: Extending memory management tools
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/memory | 108 +++++++++++++++++++
.../specialized.destroy/destroy.pass.cpp | 47 ++++++++
.../specialized.destroy/destroy_at.pass.cpp | 74 +++++++++++++
.../specialized.destroy/destroy_n.pass.cpp | 49 +++++++++
.../uninitialized_default_construct.pass.cpp | 115 ++++++++++++++++++++
.../uninitialized_default_construct_n.pass.cpp | 119 ++++++++++++++++++++
.../uninitialized_value_construct.pass.cpp | 114 ++++++++++++++++++++
.../uninitialized_value_construct_n.pass.cpp | 116 ++++++++++++++++++++
.../uninitialized.move/uninitialized_move.pass.cpp | 117 ++++++++++++++++++++
.../uninitialized_move_n.pass.cpp | 120 +++++++++++++++++++++
.../test_throw.h} | 38 +++----
www/cxx1z_status.html | 2 +-
12 files changed, 994 insertions(+), 25 deletions(-)
create mode 100644 test/std/utilities/memory/specialized.algorithms/specialized.de [...]
create mode 100644 test/std/utilities/memory/specialized.algorithms/specialized.de [...]
create mode 100644 test/std/utilities/memory/specialized.algorithms/specialized.de [...]
create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized. [...]
create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized. [...]
create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized. [...]
create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized. [...]
create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized. [...]
create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized. [...]
copy test/{std/utilities/tuple/tuple.tuple/TupleFunction.pass.cpp => support/test_ [...]
--
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-6-branch
in repository gcc.
from ee01cafb PR c++/71748 - call to base destructor in template.
new d40262c PR c++/71350 - error recursion with initializer-list
new 824264c PR c++/71738 - nested template friend
new feb9052 PR c++/70778 - member template template parameter
new b17a37c PR c++/70709 - zero-length array member
new bcffdd2 PR c++/55922 - list-value-initialization of base
The 5 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 | 19 +++++++++++++++++++
gcc/cp/class.c | 3 ++-
gcc/cp/decl.c | 6 ++++--
gcc/cp/init.c | 13 +++++++++++++
gcc/cp/pt.c | 15 ++++++++++++---
gcc/testsuite/g++.dg/cpp0x/decltype66.C | 19 +++++++++++++++++++
gcc/testsuite/g++.dg/cpp0x/initlist-base2.C | 21 +++++++++++++++++++++
gcc/testsuite/g++.dg/cpp0x/initlist-base3.C | 17 +++++++++++++++++
gcc/testsuite/g++.dg/ext/array3.C | 19 +++++++++++++++++++
gcc/testsuite/g++.dg/template/friend63.C | 29 +++++++++++++++++++++++++++++
gcc/testsuite/g++.dg/template/ttp29.C | 21 +++++++++++++++++++++
11 files changed, 176 insertions(+), 6 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp0x/decltype66.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/ext/array3.C
create mode 100644 gcc/testsuite/g++.dg/template/friend63.C
create mode 100644 gcc/testsuite/g++.dg/template/ttp29.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 gcc.
from bdac511 PR c++/71738 - nested template friend
new a0b848c PR c++/70778 - member template template parameter
new a3877fd PR c++/70709 - zero-length array member
new 0c3a0d4 PR c++/55922 - list-value-initialization of base
new fc0d5c8 PR c++/66617 - virtual base list-initialization
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 | 15 ++++++++++++
gcc/cp/call.c | 37 +++++++++++++++++++----------
gcc/cp/class.c | 3 ++-
gcc/cp/init.c | 13 ++++++++++
gcc/cp/pt.c | 11 +++++++--
gcc/testsuite/g++.dg/cpp0x/initlist-base1.C | 15 ++++++++++++
gcc/testsuite/g++.dg/cpp0x/initlist-base2.C | 21 ++++++++++++++++
gcc/testsuite/g++.dg/cpp0x/initlist-base3.C | 17 +++++++++++++
gcc/testsuite/g++.dg/ext/array3.C | 19 +++++++++++++++
gcc/testsuite/g++.dg/template/ttp29.C | 21 ++++++++++++++++
10 files changed, 156 insertions(+), 16 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist-base1.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/ext/array3.C
create mode 100644 gcc/testsuite/g++.dg/template/ttp29.C
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.