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 5497e7a [Darwin] Back-port fix for PR67710. new 7af1e58 Daily bump. new 70cd8eb Fix PR77904: callee-saved register trashed when clobbering sp new 2aaf932 Backport from mainline 2016-11-07 Bernd Schmidt <bschmidt [...] new bc2e3c7 Backport all Filesystem library fixes from trunk new 4435fea2 Remove stray character at end of dg-do directive new a7d8f25 Enable experimental::enable_shared_from_this explicitly new 441e784 PR78465 Remove runtime tests for <atomic> macros
The 7 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 | 20 ++ gcc/DATESTAMP | 2 +- gcc/combine.c | 24 ++- gcc/config/arm/arm.c | 4 + gcc/testsuite/ChangeLog | 16 ++ gcc/testsuite/gcc.dg/torture/pr77309.c | 14 ++ .../gcc.target/arm/{pr77933-1.c => pr77904.c} | 7 +- libstdc++-v3/ChangeLog | 124 +++++++++++ libstdc++-v3/include/experimental/bits/fs_dir.h | 1 + libstdc++-v3/include/experimental/bits/fs_fwd.h | 2 +- libstdc++-v3/include/experimental/bits/fs_ops.h | 19 +- libstdc++-v3/include/experimental/bits/fs_path.h | 77 ++++++- .../include/experimental/bits/shared_ptr.h | 69 ++++-- libstdc++-v3/src/filesystem/dir.cc | 46 ++-- libstdc++-v3/src/filesystem/ops.cc | 237 ++++++++++++++------- .../testsuite/29_atomics/headers/atomic/macros.cc | 68 ++---- .../filesystem/iterators/directory_iterator.cc | 14 +- .../experimental/filesystem/iterators/pop.cc | 108 ++++++++++ .../iterators/recursive_directory_iterator.cc | 25 +-- .../experimental/filesystem/operations/copy.cc | 64 +++++- .../filesystem/operations/copy_file.cc | 3 + .../{create_directory.cc => create_symlink.cc} | 62 ++++-- .../{create_directory.cc => equivalent.cc} | 51 +++-- .../experimental/filesystem/operations/exists.cc | 49 +++++ .../experimental/filesystem/operations/is_empty.cc | 109 ++++++++++ .../filesystem/operations/last_write_time.cc | 156 ++++++++++++++ .../filesystem/operations/permissions.cc | 105 ++++++++- .../query/empty.cc => operations/read_symlink.cc} | 30 ++- .../filesystem/operations/remove_all.cc | 92 ++++++++ .../filesystem/operations/temp_directory_path.cc | 46 ++++ .../filesystem/path/construct/range.cc | 51 ++++- .../path/construct/{range.cc => string_view.cc} | 27 +-- .../shared_ptr/cons/enable_shared_from_this.cc} | 31 +-- .../memory/shared_ptr/cons/unique_ptr_ctor.cc | 14 +- libstdc++-v3/testsuite/util/testsuite_fs.h | 21 +- 35 files changed, 1488 insertions(+), 300 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/torture/pr77309.c copy gcc/testsuite/gcc.target/arm/{pr77933-1.c => pr77904.c} (87%) create mode 100644 libstdc++-v3/testsuite/experimental/filesystem/iterators/pop.cc copy libstdc++-v3/testsuite/experimental/filesystem/operations/{create_directory.c [...] copy libstdc++-v3/testsuite/experimental/filesystem/operations/{create_directory.c [...] create mode 100644 libstdc++-v3/testsuite/experimental/filesystem/operations/is_empty.cc create mode 100644 libstdc++-v3/testsuite/experimental/filesystem/operations/last_ [...] copy libstdc++-v3/testsuite/experimental/filesystem/{path/query/empty.cc => operat [...] create mode 100644 libstdc++-v3/testsuite/experimental/filesystem/operations/remov [...] copy libstdc++-v3/testsuite/experimental/filesystem/path/construct/{range.cc => st [...] copy libstdc++-v3/testsuite/{20_util/raw_storage_iterator/dr2127.cc => experimenta [...]