This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/pr68991/gcc-5-branch in repository gcc.
discards 6b5bb9d Add vector_memory_operand and "Bm" constraint adds 3f68c2c PR rtl-optimization/68910 * emit-rtl.c (set_unique_reg_note [...] adds f0b7700 Daily bump. adds eb89485 Daily bump. adds 0cacac0 PR c++/67411 adds c03a673 PR c++/67411 * decl2.c (decl_maybe_constant_var_p): Use DEC [...] adds 7abf800 Fix typo adds 8d9589e Daily bump. adds 1df8132 gcc/ Backport from mainline PR target/68772 * config/rs600 [...] adds cad6e7bb PR c++/67339 * parser.c (cp_parser_elaborated_type_specifie [...] adds 9190830 PR c++/66921 * decl.c (cp_complete_array_type): Allow an in [...] adds 64fbb2e Daily bump. adds 0819a29 Daily bump. adds 1ec609a Daily bump. adds 7bbab62 2015-12-25 Andreas Tobler andreast@gcc.gnu.org adds a42ace7 Daily bump. adds 2bc7212 Daily bump. adds 2bf9cbb 2015-12-27 Edward Smith-Rowland 3dw4rd@verizon.net * inc [...] adds 417f59c Daily bump. adds 088e74e * gcc.dg/torture/pr67609.c: Add -fno-common option on hppa*- [...] adds 19bcb83 Daily bump. adds c4da7bc Daily bump. adds 3988607 AVX-512. Split out mask version for vec_extract_hi_<mode>. adds aee41c1 [Obvious] Remove redundant brances from the test. adds 9f3ff33 Fix for PR68987 adds 3595dd8 * gfortran.dg/coarray_40.f90: Link with libatomic if [...] adds 5f0ba32 2015-12-30 Jerry DeLisle jvdelisle@gcc.gnu.org adds 787617a Daily bump. adds 196fc16 * fr.po: Update. adds 8e51049 Backport PR c/68668 patch to fix PR c/69037. adds 38e1061 AVX-512. Fix AVX-512 broadcast pattern. adds b0a6809 Daily bump. adds 41919bc Daily bump. adds 116ff44 Daily bump. adds 2a731c3 2016-01-03 Matthias Klose doko@ubuntu.com adds 1ccc060 Daily bump. new 1d04ae2 Add vector_memory_operand and "Bm" constraint
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 (6b5bb9d) \ N -- N -- N refs/heads/hjl/pr68991/gcc-5-branch (1d04ae2)
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 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 | 46 ++ gcc/DATESTAMP | 2 +- gcc/c/ChangeLog | 11 + gcc/c/c-decl.c | 7 + gcc/config/i386/predicates.md | 2 +- gcc/config/i386/sse.md | 79 ++- gcc/config/rs6000/freebsd64.h | 23 +- gcc/config/rs6000/rs6000.h | 1 + gcc/config/sparc/sparc.md | 184 +---- gcc/cp/ChangeLog | 18 + gcc/cp/decl.c | 3 +- gcc/cp/decl2.c | 3 + gcc/cp/parser.c | 2 +- gcc/emit-rtl.c | 3 +- gcc/po/ChangeLog | 4 + gcc/po/fr.po | 745 +++++++++------------ gcc/testsuite/ChangeLog | 45 ++ gcc/testsuite/g++.dg/cpp0x/alias-decl-pmf1.C | 16 + gcc/testsuite/g++.dg/cpp0x/constexpr-array14.C | 9 + gcc/testsuite/g++.dg/cpp1y/lambda-generic-const1.C | 18 + gcc/testsuite/g++.dg/pr68991-1.C | 191 ++++++ gcc/testsuite/g++.dg/pr68991-2.C | 191 ++++++ gcc/testsuite/gcc.dg/pr68668.c | 53 ++ gcc/testsuite/gcc.dg/torture/pr67609.c | 1 + .../gcc.target/i386/avx-vextractf128-256-5.c | 12 + .../gcc.target/i386/avx512dq-vextractf64x2-1.c | 2 +- .../gcc.target/i386/avx512dq-vextracti64x2-1.c | 2 +- .../gcc.target/i386/avx512f-vbroadcastsd-3.c | 21 + gcc/testsuite/gcc.target/powerpc/pr68872.c | 14 + gcc/testsuite/gcc.target/sparc/20151219-1.c | 39 ++ gcc/testsuite/gfortran.dg/coarray_40.f90 | 1 + gcc/testsuite/gfortran.dg/coarray_lib_comm_1.f90 | 4 +- gcc/testsuite/gfortran.dg/error_format_2.f90 | 16 + libgfortran/ChangeLog | 6 + libgfortran/io/format.c | 20 - libjava/ChangeLog | 5 + libjava/include/jvm.h | 5 +- libstdc++-v3/ChangeLog | 3 + libstdc++-v3/include/bits/c++0x_warning.h | 6 +- 39 files changed, 1140 insertions(+), 673 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/alias-decl-pmf1.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-array14.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/lambda-generic-const1.C create mode 100644 gcc/testsuite/g++.dg/pr68991-1.C create mode 100644 gcc/testsuite/g++.dg/pr68991-2.C create mode 100644 gcc/testsuite/gcc.dg/pr68668.c create mode 100644 gcc/testsuite/gcc.target/i386/avx-vextractf128-256-5.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512f-vbroadcastsd-3.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr68872.c create mode 100644 gcc/testsuite/gcc.target/sparc/20151219-1.c create mode 100644 gcc/testsuite/gfortran.dg/error_format_2.f90