This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/interrupt/stage1 in repository gcc.
discards 442b249 Add an array of function pointer test for PR 68661 discards 048043b Rebuild array with the updated function pointer type discards 5a5e180 Implement x86 interrupt attribute discards a5099ea Update TARGET_FUNCTION_INCOMING_ARG documentation adds 3c8e753 * config/rs6000/rs6000.c (output_cbranch): Don't statically [...] adds f488166 PR middle-end/69542 * lra-remat.c (calculate_local_reg_rema [...] adds c649bac PR target/17381 - Unnecessary register move for float extend adds 9125318 2016-01-28 Steve Ellcey sellcey@imgtec.com adds c80c12c PR target/68400 * gcc.target/mips/mips.exp (mips_option_gro [...] adds f11bb27 PR target/69459 * config/i386/constraints.md (C): Only acce [...] adds 9cd9799 PR pch/68176 * files.c (_cpp_find_file): Set file->implicit [...] adds d645b96 Daily bump. adds e6d2fce Fix cp_binding_level reuse logic adds a3b6fb3 PR69545: revert patch adds 7550d85 2016-01-29 Richard Biener rguenther@suse.de adds ce6a697 PR c++/69509 PR c++/69516 * constexpr.c (cxx_eval_array_re [...] adds ef95367 PR c++/69462: Provide FLT_EVAL_METHOD and DECIMAL_DIG in float.h. adds ae849d2 S/390: Require a hardware vector support for test to succeed. adds 5c770bd PR other/69006: S/390: Fix extra newlines after diagnostics. adds 26b22e9 S/390: Use %qs in error messages. adds 40c727c Fix Cygwin bootstrap error due to TM symbols adds d2a60e9 PR debug/66869 * decl.c (wrapup_globals_for_namespace): War [...] adds b622ec2 2016-01-29 Richard Biener rguenther@suse.de adds 1e64899 Test __cplusplus instead of __GXX_EXPERIMENTAL_CXX0X__ adds f9fb57c Add myself as a hsa maintainer adds 38920db Use vm in sse2_cvtps2pd<mask_name> adds e3078da testsuite/ 2016-01-29 Andrew Bennett andrew.bennett@imgtec.com adds ca6c731 PR target/66137 * gcc.target/i386/pr66137.c: New test. adds 4758dc3 PR target/69551 * config/i386/i386.c (ix86_expand_vector_se [...] new 7db46a1 Update TARGET_FUNCTION_INCOMING_ARG documentation new 54218cc Implement x86 interrupt attribute new 5a7aa40 Rebuild array with the updated function pointer type new 8d7fa28 Add an array of function pointer test for PR 68661
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 (442b249) \ N -- N -- N refs/heads/hjl/interrupt/stage1 (8d7fa28)
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 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: ChangeLog | 4 + MAINTAINERS | 1 + gcc/ChangeLog | 155 ++++++++++++++++++++------ gcc/DATESTAMP | 2 +- gcc/config/i386/constraints.md | 9 +- gcc/config/i386/i386.c | 1 + gcc/config/i386/sse.md | 4 +- gcc/config/mips/mips.c | 15 ++- gcc/config/rs6000/rs6000.c | 7 +- gcc/config/s390/s390-c.c | 7 +- gcc/cp/ChangeLog | 21 ++++ gcc/cp/constexpr.c | 55 +++++---- gcc/cp/decl.c | 18 +++ gcc/cp/init.c | 4 +- gcc/cp/name-lookup.c | 2 +- gcc/doc/md.texi | 2 +- gcc/ginclude/float.h | 3 +- gcc/ginclude/stdarg.h | 3 +- gcc/graphite-isl-ast-to-gimple.c | 21 +++- gcc/lra-remat.c | 2 +- gcc/match.pd | 2 +- gcc/testsuite/ChangeLog | 66 ++++++++++- gcc/testsuite/g++.dg/ext/constexpr-vla2.C | 21 ++++ gcc/testsuite/g++.dg/ext/constexpr-vla3.C | 14 +++ gcc/testsuite/g++.dg/tree-ssa/pr69547.C | 15 +++ gcc/testsuite/g++.dg/ubsan/vla-1.C | 1 - gcc/testsuite/g++.dg/warn/Wunused-function2.C | 6 + gcc/testsuite/gcc.dg/torture/pr69542.c | 37 ++++++ gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-cse-2.c | 4 + gcc/testsuite/gcc.dg/uninit-21.c | 33 ++++++ gcc/testsuite/gcc.target/i386/pr66137.c | 11 ++ gcc/testsuite/gcc.target/i386/pr69459.c | 42 +++++++ gcc/testsuite/gcc.target/i386/pr69551.c | 23 ++++ gcc/testsuite/gcc.target/mips/mips.exp | 8 ++ gcc/testsuite/gcc.target/mips/p5600-bonding.c | 2 +- gcc/testsuite/gcc.target/mips/pr68400.c | 28 +++++ gcc/testsuite/gcc.target/powerpc/pr17381.c | 22 ++++ gcc/tree-ssa-dce.c | 6 +- libcpp/ChangeLog | 4 + libcpp/files.c | 5 +- libstdc++-v3/ChangeLog | 5 + libstdc++-v3/config/os/newlib/os_defines.h | 3 + 42 files changed, 599 insertions(+), 95 deletions(-) create mode 100644 gcc/testsuite/g++.dg/ext/constexpr-vla2.C create mode 100644 gcc/testsuite/g++.dg/ext/constexpr-vla3.C create mode 100644 gcc/testsuite/g++.dg/tree-ssa/pr69547.C create mode 100644 gcc/testsuite/g++.dg/warn/Wunused-function2.C create mode 100644 gcc/testsuite/gcc.dg/torture/pr69542.c create mode 100644 gcc/testsuite/gcc.dg/uninit-21.c create mode 100644 gcc/testsuite/gcc.target/i386/pr66137.c create mode 100644 gcc/testsuite/gcc.target/i386/pr69459.c create mode 100644 gcc/testsuite/gcc.target/i386/pr69551.c create mode 100644 gcc/testsuite/gcc.target/mips/pr68400.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr17381.c