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 7270983 Implement x86 interrupt attribute adds 9b9bdd2 runtime: Fix recent lfstack change on Solaris. adds b3c76b9 Fix aarch64/target_attr_10 test following r227997. adds 420fe69 Leave moved-from std::deque in a valid state adds 82882db [AArch64] Delete aarch64_symbol_context which is not used adds 1d46fab [AArch64] Handle const address in aarch64_print_operand adds 1b3e776 fdiagnostics-color=never does not disable color for some diagnostics adds 34bc30d 2015-09-24 Vladimir Makarov vmakarov@redhat.com adds b6205e1 2015-09-24 Michael Collison michael.collison@linaro.org adds 8ef0dc8 * config/pa/pa-linux.h (HAVE_sync_compare_and_swapdi): Defin [...] adds 6764dd4 Daily bump. adds 07d9b77 Change IA MCU processor from iamcu to lakemount adds ac13b2b PR sanitizer/64906 * c-ubsan.c (ubsan_instrument_division): [...] adds bd4b90d * c-ubsan.c (ubsan_instrument_division): Remove unnecessary [...] adds 3f6183e Rename IA MCU processor lakemount to lakemont adds e9fd1d1 [AArch64] Force __builtin_aarch64_fp[sc]r argument into a REG adds b0d054a gcc/ PR target/67675 * config/sh/sh-mem.cc (sh_expand_cmpst [...] adds a6871bd PR pretty-print/67567 do not pass NULL as a string adds 63e26b2 Avoid creating dangling references in case of nested tuples f [...] adds a83df7d This patch unsets -freorder-blocks-and-partition when -fprofi [...] adds 69f3211 Fix old ChangeLog entry to include global variable name that [...] adds b07d288 * tr.po: Update. adds f8183c5 2015-09-25 Tobias Burnus burnus@net-b.de adds 872343e 2015-09-25 Tobias Burnus burnus@net-b.de new a128222 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 (7270983) \ N -- N -- N refs/heads/hjl/interrupt/master (a128222)
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 | 132 + gcc/ChangeLog-2013 | 4 +- gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 10 + gcc/c-family/c-ubsan.c | 31 +- gcc/config.gcc | 6 +- gcc/config/aarch64/aarch64-builtins.c | 2 +- gcc/config/aarch64/aarch64-protos.h | 21 +- gcc/config/aarch64/aarch64.c | 33 +- gcc/config/aarch64/predicates.md | 4 +- gcc/config/i386/i386-c.c | 6 +- gcc/config/i386/i386.c | 16 +- gcc/config/i386/i386.h | 2 +- gcc/config/i386/x86-tune.def | 26 +- gcc/config/pa/pa-linux.h | 1 + gcc/config/pa/pa-protos.h | 1 + gcc/config/pa/pa.c | 77 +- gcc/config/pa/pa.md | 214 +- gcc/config/sh/sh-mem.cc | 37 +- gcc/doc/extend.texi | 30 +- gcc/doc/invoke.texi | 21 +- gcc/fortran/ChangeLog | 6 + gcc/fortran/resolve.c | 15 +- gcc/go/gofrontend/MERGE | 2 +- gcc/ira-color.c | 25 +- gcc/opts-common.c | 17 + gcc/opts.c | 17 +- gcc/po/ChangeLog | 4 + gcc/po/tr.po | 3252 ++------------------ gcc/pretty-print.c | 3 +- gcc/pretty-print.h | 1 + gcc/read-md.c | 19 +- gcc/testsuite/ChangeLog | 42 + gcc/testsuite/c-c++-common/ubsan/bounds-11.c | 23 + gcc/testsuite/c-c++-common/ubsan/bounds-12.c | 23 + gcc/testsuite/c-c++-common/ubsan/pr64906.c | 12 + gcc/testsuite/gcc.dg/Werror-13.c | 8 + gcc/testsuite/gcc.target/aarch64/fpcr_fpsr_1.c | 26 + gcc/testsuite/gcc.target/aarch64/target_attr_10.c | 2 +- gcc/testsuite/gcc.target/i386/interrupt-10.c | 4 +- gcc/testsuite/gcc.target/i386/interrupt-iamcu.c | 2 +- gcc/testsuite/gcc.target/i386/pr66749.c | 2 +- gcc/testsuite/gcc.target/i386/pr66821.c | 2 +- gcc/testsuite/gcc.target/i386/pr67329.c | 2 +- gcc/testsuite/gcc.target/sh/pr67675.c | 62 + libgo/runtime/lfstack.goc | 2 +- libstdc++-v3/ChangeLog | 18 + libstdc++-v3/include/bits/stl_deque.h | 1 + libstdc++-v3/include/std/tuple | 44 +- .../20_util/tuple/cons/nested_tuple_construct.cc | 60 + .../23_containers/deque/allocator/move.cc | 10 + 51 files changed, 1131 insertions(+), 3251 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/ubsan/bounds-11.c create mode 100644 gcc/testsuite/c-c++-common/ubsan/bounds-12.c create mode 100644 gcc/testsuite/c-c++-common/ubsan/pr64906.c create mode 100644 gcc/testsuite/gcc.dg/Werror-13.c create mode 100644 gcc/testsuite/gcc.target/aarch64/fpcr_fpsr_1.c create mode 100644 gcc/testsuite/gcc.target/sh/pr67675.c create mode 100644 libstdc++-v3/testsuite/20_util/tuple/cons/nested_tuple_construct.cc