This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 5b20442 test: remove the archive before modifying it
new 00eb18d [LangRef] Drop misleading anecdote
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:
docs/LangRef.rst | 4 +---
1 file changed, 1 insertion(+), 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 libcxx.
from 6e467a8 Fix GCC libc++abi build
new 763984e Add docs for use-configurable libc++ features
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:
docs/UsingLibcxx.rst | 26 ++++++++++++++++++++++++++
1 file changed, 26 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 gcc.
from 3657b81 gcc/testsuite/ChangeLog:
new 861e87e Add array support to std::shared_ptr for C++17
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:
libstdc++-v3/ChangeLog | 38 ++
libstdc++-v3/doc/html/manual/status.html | 4 +-
libstdc++-v3/doc/xml/manual/status_cxx2017.xml | 3 +-
libstdc++-v3/include/bits/shared_ptr.h | 10 +
libstdc++-v3/include/bits/shared_ptr_base.h | 219 ++++++-
.../include/experimental/bits/shared_ptr.h | 666 +--------------------
.../testsuite/20_util/shared_ptr/cons/array.cc | 273 +++++++++
.../20_util/shared_ptr/cons/unique_ptr_array.cc | 17 +
.../shared_ptr/observers/{get.cc => array.cc} | 41 +-
9 files changed, 562 insertions(+), 709 deletions(-)
create mode 100644 libstdc++-v3/testsuite/20_util/shared_ptr/cons/array.cc
copy libstdc++-v3/testsuite/20_util/shared_ptr/observers/{get.cc => array.cc} (61%)
--
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 libcxxabi.
from cc4f512 arm: Fix ttype encoding assertion failure.
new 1105202 Fix GCC libc++abi build
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 | 4 ++++
test/lit.site.cfg.in | 1 +
2 files changed, 5 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 f9a20c2 Implement LWG 2770 - Make tuple_size<T> defined for all T
new 6e467a8 Fix GCC libc++abi build
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 | 3 +++
test/libcxx/compiler.py | 11 +++++++++++
test/libcxx/test/config.py | 15 ++++++++++++---
test/lit.site.cfg.in | 4 +++-
4 files changed, 29 insertions(+), 4 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 8503094 Implement P0403R1, Literal suffixes for basic_string_view. * [...]
new 3657b81 gcc/testsuite/ChangeLog:
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 | 13 +++++
gcc/ipa-cp.c | 41 ++++++++++++---
gcc/ipa-prop.c | 93 +++++++++++++++++++++++++++++-----
gcc/testsuite/ChangeLog | 4 ++
gcc/testsuite/g++.dg/torture/pr78268.C | 25 +++++++++
5 files changed, 156 insertions(+), 20 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/torture/pr78268.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 lldb.
from 18b71d5 Make OptionParser::Parse() take StringRef.
new ec09eb3 I am leaving Apple in a few weeks; switch over to my personal [...]
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:
CODE_OWNERS.txt | 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 gcc.
from 9bf6a8e 2016-11-13 Prathamesh Kulkarni <prathamesh.kulkarni(a)linaro.org>
new 8503094 Implement P0403R1, Literal suffixes for basic_string_view. * [...]
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:
libstdc++-v3/ChangeLog | 13 ++++
libstdc++-v3/include/std/string_view | 30 +++++++++
.../basic_string_view}/literals/types.cc | 17 ++---
.../basic_string_view/literals/values.cc | 72 ++++++++++++++++++++++
.../experimental/string_view/literals/values.cc | 28 +++++++++
5 files changed, 152 insertions(+), 8 deletions(-)
copy libstdc++-v3/testsuite/{experimental/string_view => 21_strings/basic_string_v [...]
create mode 100644 libstdc++-v3/testsuite/21_strings/basic_string_view/literals/values.cc
--
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 38feb36 [ValueTracking] recognize even more variants of smin/smax
new a5627e5 llvm-cxxfilt: support reading from stdin
new 5b20442 test: remove the archive before modifying it
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:
test/Demangle/lit.local.cfg | 1 -
test/tools/llvm-cxxfilt/noargs.test | 10 +++++++++
test/{Demangle => tools/llvm-cxxfilt}/simple.test | 0
test/tools/llvm-strings/archive-filename.test | 1 +
tools/llvm-cxxfilt/llvm-cxxfilt.cpp | 27 ++++++++++++++---------
5 files changed, 28 insertions(+), 11 deletions(-)
delete mode 100644 test/Demangle/lit.local.cfg
create mode 100644 test/tools/llvm-cxxfilt/noargs.test
rename test/{Demangle => tools/llvm-cxxfilt}/simple.test (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 fc044a1 Fix PR30979 - tuple<move_only> is constructible from move_onl [...]
new f9a20c2 Implement LWG 2770 - Make tuple_size<T> defined for all T
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 | 2 +-
include/tuple | 2 +-
.../tuple.tuple/tuple.helper/tuple_size.fail.cpp | 6 ++---
.../tuple.tuple/tuple.helper/tuple_size.pass.cpp | 26 ++++++++++++++++++++++
.../tuple.tuple/tuple.helper/tuple_size_v.fail.cpp | 2 +-
5 files changed, 32 insertions(+), 6 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.