This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/interrupt/master in repository gcc.
discards 457240b Implement x86 interrupt attribute discards 881c0ed Support unaligned SSE moves outside realigned area discards 9cfc5f3 Merge ix86_maybe_switch_abi with ix86_set_current_function adds bf00102 PR c++/67810 * parser.c (cp_parser_fold_expr_p): Remove. ( [...] adds 28cb74c reorg.c: use vec<rtx_insn *> instead of rtx_insn_list for the [...] adds a27d141e3 [PATCH][PR tree-optimization/67816] Fix jump threading when D [...] adds ebd1f44 * cp-gimplify.c (genericize_if_stmt): Use protected_set_expr [...] adds 0ebc7d3 Cache reals for 1/4, 1/6 and 1/9 adds 7aa5890 Fix PR c/65345 for arm adds 3702cf1 2015-10-07 Richard Biener rguenther@suse.de adds f555c5f Check in forgotten test for fortran/65766 adds 2be65b6 Merge ix86_maybe_switch_abi with ix86_set_current_function adds 10c26e1 gcc/fortran/ChangeLog: new 3e1acdc Support unaligned SSE moves outside realigned area new 22df8d8 Implement x86 interrupt attribute
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 (457240b) \ N -- N -- N refs/heads/hjl/interrupt/master (22df8d8)
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 | 69 ++++ gcc/builtins.c | 31 +- gcc/config/arm/arm-builtins.c | 4 +- gcc/config/i386/i386.c | 4 +- gcc/cp/ChangeLog | 24 ++ gcc/cp/cp-gimplify.c | 7 +- gcc/cp/decl.c | 3 +- gcc/cp/parser.c | 163 ++++++---- gcc/cp/pt.c | 12 + gcc/cp/semantics.c | 8 +- gcc/fortran/ChangeLog | 6 + gcc/fortran/trans-intrinsic.c | 11 +- gcc/real.c | 35 +- gcc/real.h | 16 +- gcc/reorg.c | 356 +++++++++------------ gcc/testsuite/ChangeLog | 9 + gcc/testsuite/g++.dg/cpp1y/var-templ45.C | 8 + gcc/testsuite/g++.dg/cpp1z/fold2.C | 4 +- gcc/testsuite/g++.dg/cpp1z/fold6.C | 42 +++ gcc/testsuite/gcc.c-torture/compile/pr67816.c | 19 ++ gcc/testsuite/gfortran.dg/sizeof_5.f90 | 15 + .../gfortran.dg/substr_alloc_string_comp_1.f90 | 23 ++ gcc/tree-ssa-dom.c | 9 +- gcc/tree-ssa-threadupdate.c | 75 +++-- gcc/tree-ssa-threadupdate.h | 2 +- gcc/tree-vect-loop.c | 226 +++++-------- gcc/tree-vect-stmts.c | 4 +- gcc/tree-vectorizer.c | 2 +- gcc/tree-vectorizer.h | 11 +- 29 files changed, 681 insertions(+), 517 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp1y/var-templ45.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/fold6.C create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr67816.c create mode 100644 gcc/testsuite/gfortran.dg/sizeof_5.f90 create mode 100644 gcc/testsuite/gfortran.dg/substr_alloc_string_comp_1.f90