This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 90a524f Start adding selftests for print_rtx new 5405a91 * gimplify.c (gimplify_bind_expr): Handle oacc_declare_retur [...] new 4d8040d * dwarf2out.c (gen_variable_die): Emit DW_AT_const_expr attr [...] new a4e1e6b * dwarf2out.c (ranges_table): Change into vec<dw_ranges, va_ [...] new fe8bebf Split <functional> into smaller pieces
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/ChangeLog | 23 + gcc/cp/ChangeLog | 5 + gcc/cp/cp-objcp-common.c | 5 + gcc/dwarf2out.c | 103 +- gcc/gimplify.c | 31 +- gcc/testsuite/ChangeLog | 4 + .../g++.dg/debug/dwarf2/constexpr-var-1.C | 9 + libstdc++-v3/ChangeLog | 30 + libstdc++-v3/include/Makefile.am | 6 +- libstdc++-v3/include/Makefile.in | 6 +- libstdc++-v3/include/bits/refwrap.h | 383 +++++++ libstdc++-v3/include/bits/shared_ptr_base.h | 3 +- libstdc++-v3/include/bits/std_function.h | 848 +++++++++++++++ libstdc++-v3/include/bits/unique_ptr.h | 1 + libstdc++-v3/include/std/functional | 1148 +------------------- libstdc++-v3/include/std/future | 2 +- libstdc++-v3/include/std/mutex | 2 +- libstdc++-v3/include/std/regex | 2 +- .../src/c++11/compatibility-thread-c++0x.cc | 1 + .../testsuite/20_util/default_delete/48631_neg.cc | 2 +- .../testsuite/20_util/default_delete/void_neg.cc | 2 +- .../20_util/unique_ptr/assign/48635_neg.cc | 4 +- .../20_util/unique_ptr/cons/cv_qual_neg.cc | 2 +- .../testsuite/30_threads/packaged_task/49668.cc | 1 + 24 files changed, 1389 insertions(+), 1234 deletions(-) create mode 100644 gcc/testsuite/g++.dg/debug/dwarf2/constexpr-var-1.C create mode 100644 libstdc++-v3/include/bits/refwrap.h create mode 100644 libstdc++-v3/include/bits/std_function.h