This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/pr69299 in repository gcc.
discards 2d9129db Use define_memory_constraint on Bm constraint adds 017dc51 2016-01-15 Steve Ellcey sellcey@imgtec.com adds e390c57 PR tree-optimization/69270 * tree-ssanames.c (ssa_name_has_ [...] adds 13143e1 libstdc++: Make certain exceptions transaction_safe. adds d20923c PR libstdc++/69294 Check for isinf and isnan on AIX adds 27c6dbd PR target/68609 * gcc.target/powerpc/recip-1. [...] adds 55f2f39 Use static assertion for uses-allocator construction adds 4a7e7d3 Daily bump. adds 4067c0f Fix PR c++/68936 adds bc24d01 Fix logic bug in Cilk Plus array expansion adds 90153ae Fix PR c++/69091 (ICE with operator overload having 'auto' re [...] new f96b64f Use define_memory_constraint on Bm constraint new 659c0aa Skip bad memory operand
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (2d9129db) \ N -- N -- N refs/heads/hjl/pr69299 (659c0aa)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
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: gcc/ChangeLog | 10 + gcc/DATESTAMP | 2 +- gcc/cp/ChangeLog | 21 ++ gcc/cp/cp-array-notation.c | 4 +- gcc/cp/pt.c | 8 +- gcc/cp/tree.c | 6 +- gcc/lra-constraints.c | 15 +- gcc/testsuite/ChangeLog | 32 +++ gcc/testsuite/c-c++-common/cilk-plus/AN/an-if.c | 5 +- gcc/testsuite/c-c++-common/cilk-plus/AN/fn_ptr-2.c | 14 + gcc/testsuite/c-c++-common/cilk-plus/CK/pr60469.c | 5 +- gcc/testsuite/g++.dg/template/pr68936.C | 20 ++ gcc/testsuite/g++.dg/template/pr69091.C | 25 ++ gcc/testsuite/gcc.dg/tree-ssa/pr69270-2.c | 52 ++++ gcc/testsuite/gcc.dg/tree-ssa/pr69270-3.c | 26 ++ gcc/testsuite/gcc.target/powerpc/recip-1.c | 4 +- gcc/testsuite/gcc.target/powerpc/recip-2.c | 5 +- gcc/testsuite/gcc.target/powerpc/recip-3.c | 6 +- gcc/testsuite/gcc.target/powerpc/recip-4.c | 6 +- gcc/testsuite/gcc.target/powerpc/recip-sqrtf.c | 2 +- gcc/tree-ssa-dom.c | 33 --- gcc/tree-ssa-uncprop.c | 21 +- gcc/tree-ssanames.c | 34 +++ gcc/tree-ssanames.h | 1 + libitm/ChangeLog | 4 + libitm/testsuite/libitm.c++/libstdc++-safeexc.C | 89 +++++++ libstdc++-v3/ChangeLog | 44 ++++ libstdc++-v3/acinclude.m4 | 38 ++- libstdc++-v3/config.h.in | 3 + libstdc++-v3/config/abi/pre/gnu.ver | 41 +++ libstdc++-v3/configure | 135 +++++++++- libstdc++-v3/configure.ac | 3 + libstdc++-v3/include/Makefile.am | 13 +- libstdc++-v3/include/Makefile.in | 10 +- libstdc++-v3/include/bits/basic_string.h | 12 + libstdc++-v3/include/bits/c++config | 16 ++ libstdc++-v3/include/bits/uses_allocator.h | 7 +- libstdc++-v3/include/ext/random.tcc | 2 +- libstdc++-v3/include/std/stdexcept | 54 ++-- libstdc++-v3/libsupc++/eh_exception.cc | 44 +++- libstdc++-v3/libsupc++/exception | 10 +- libstdc++-v3/src/c++11/cow-stdexcept.cc | 289 +++++++++++++++++++++ .../scoped_allocator/{69114.cc => 69293_neg.cc} | 41 +-- .../uses_allocator/{69114.cc => 69293_neg.cc} | 38 +-- .../testsuite/20_util/uses_allocator/cons_neg.cc | 2 +- libstdc++-v3/testsuite/util/testsuite_abi.cc | 3 +- 46 files changed, 1088 insertions(+), 167 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/cilk-plus/AN/fn_ptr-2.c create mode 100644 gcc/testsuite/g++.dg/template/pr68936.C create mode 100644 gcc/testsuite/g++.dg/template/pr69091.C create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr69270-2.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr69270-3.c create mode 100644 libitm/testsuite/libitm.c++/libstdc++-safeexc.C copy libstdc++-v3/testsuite/20_util/scoped_allocator/{69114.cc => 69293_neg.cc} (54%) copy libstdc++-v3/testsuite/20_util/uses_allocator/{69114.cc => 69293_neg.cc} (59%)