This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from c566e9ccc58 2019-09-05 Richard Biener rguenther@suse.de new 8bc9c0bbee9 [preprocessor/91639] #includes at EOF new f742e18cbeb Implement std::span for C++20 new 2981b5fceea [C++ PATCH] vtable decl marking
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: gcc/cp/ChangeLog | 4 + gcc/cp/cp-tree.h | 7 +- gcc/testsuite/ChangeLog | 7 + gcc/testsuite/c-c++-common/cpp/pr91639-one.h | 2 + gcc/testsuite/c-c++-common/cpp/pr91639-two.h | 1 + gcc/testsuite/c-c++-common/cpp/pr91639.c | 9 + libcpp/ChangeLog | 11 + libcpp/directives.c | 4 + libcpp/files.c | 29 +- libcpp/internal.h | 3 +- libcpp/lex.c | 8 +- libcpp/line-map.c | 6 +- libstdc++-v3/ChangeLog | 22 + libstdc++-v3/include/Makefile.am | 1 + libstdc++-v3/include/Makefile.in | 1 + libstdc++-v3/include/bits/range_access.h | 72 +++ libstdc++-v3/include/bits/stl_iterator.h | 37 +- libstdc++-v3/include/std/span | 521 +++++++++++++++++++++ libstdc++-v3/include/std/version | 3 + .../span/contiguous_range_neg.cc} | 19 +- .../testsuite/23_containers/span/everything.cc | 203 ++++++++ .../span/get_neg.cc} | 17 +- .../span/last_neg.cc} | 16 +- .../span/subspan_neg.cc} | 16 +- .../span/tuple_element_dynamic_neg.cc} | 12 +- .../span/tuple_element_oob_neg.cc} | 9 +- .../span/tuple_size_neg.cc} | 12 +- 27 files changed, 975 insertions(+), 77 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/cpp/pr91639-one.h create mode 100644 gcc/testsuite/c-c++-common/cpp/pr91639-two.h create mode 100644 gcc/testsuite/c-c++-common/cpp/pr91639.c create mode 100644 libstdc++-v3/include/std/span copy libstdc++-v3/testsuite/{20_util/is_unbounded_array/requirements/explicit_inst [...] create mode 100644 libstdc++-v3/testsuite/23_containers/span/everything.cc copy libstdc++-v3/testsuite/{20_util/is_unbounded_array/requirements/explicit_inst [...] copy libstdc++-v3/testsuite/{20_util/pointer_traits/pointer_to_constexpr.cc => 23_ [...] copy libstdc++-v3/testsuite/{20_util/is_bounded_array/requirements/explicit_instan [...] copy libstdc++-v3/testsuite/{20_util/pointer_traits/pointer_to_constexpr.cc => 23_ [...] copy libstdc++-v3/testsuite/{24_iterators/ostream_iterator/requirements/constexpr. [...] copy libstdc++-v3/testsuite/{20_util/pointer_traits/pointer_to_constexpr.cc => 23_ [...]