This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/interrupt/middle in repository gcc.
discards abac107 Also check mode on entry_parm for conversion discards 81ff74c Implement x86 interrupt attribute discards a82437d Update TARGET_FUNCTION_INCOMING_ARG documentation adds 59ec98b * lambda.c (maybe_add_lambda_conv_op): Only set no_sanitize [...] adds d55ee8d PR c++/68434 adds 2de9250 * g++.dg/init/self1.C: Remove dg-do run. adds 3f8f2e5 * lto-symtab.c: Include alias.h (warn_type_compatibility_p) [...] adds 64dc367 [gcc] 2015-11-25 Michael Meissner meissner@linux.vnet.ibm.com adds cf9e748 update changelog adds 4c4a180 PR lto/67548 * lto-plugin.c (linker_output, linker_output_s [...] new cb80a80 PR c/66516 - missing diagnostic on taking the address of a bu [...] new 3b5af41 Update TARGET_FUNCTION_INCOMING_ARG documentation new 89b651b 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 (abac107) \ N -- N -- N refs/heads/hjl/interrupt/middle (89b651b)
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 3 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 | 48 ++++ gcc/common.opt | 6 + gcc/config/i386/i386.c | 6 +- gcc/config/rs6000/constraints.md | 3 +- gcc/config/rs6000/rs6000.c | 42 +++- gcc/config/rs6000/rs6000.h | 1 + gcc/config/rs6000/rs6000.md | 63 +++-- gcc/cp/ChangeLog | 9 + gcc/cp/lambda.c | 13 +- gcc/cp/pt.c | 12 +- gcc/doc/md.texi | 6 +- gcc/flag-types.h | 8 + gcc/function.c | 3 +- gcc/ipa-visibility.c | 46 +++- gcc/lto/ChangeLog | 14 ++ gcc/lto/lang.opt | 23 ++ gcc/lto/lto-lang.c | 29 +++ gcc/lto/lto-symtab.c | 179 +++++++------ gcc/testsuite/ChangeLog | 23 +- gcc/testsuite/g++.dg/addr_builtin-1.C | 276 +++++++++++++++++++++ gcc/testsuite/g++.dg/concepts/pr68434.C | 21 ++ gcc/testsuite/g++.dg/init/self1.C | 1 - gcc/testsuite/g++.dg/lto/20100603-1_0.C | 1 + gcc/testsuite/gcc.dg/addr_builtin-1.c | 198 +++++++++++++++ gcc/testsuite/gcc.target/powerpc/dform-1.c | 207 ++++++++++++++++ gcc/testsuite/gcc.target/powerpc/dform-2.c | 209 ++++++++++++++++ .../lto/{bind_c-5_0.f90 => bind_c-6_0.f90} | 4 +- gcc/testsuite/gfortran.dg/lto/bind_c-6_1.c | 29 +++ lto-plugin/ChangeLog | 7 + lto-plugin/lto-plugin.c | 29 ++- 30 files changed, 1376 insertions(+), 140 deletions(-) create mode 100644 gcc/testsuite/g++.dg/addr_builtin-1.C create mode 100644 gcc/testsuite/g++.dg/concepts/pr68434.C create mode 100644 gcc/testsuite/gcc.dg/addr_builtin-1.c create mode 100644 gcc/testsuite/gcc.target/powerpc/dform-1.c create mode 100644 gcc/testsuite/gcc.target/powerpc/dform-2.c copy gcc/testsuite/gfortran.dg/lto/{bind_c-5_0.f90 => bind_c-6_0.f90} (76%) create mode 100644 gcc/testsuite/gfortran.dg/lto/bind_c-6_1.c