This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/iamcu/improve in repository gcc.
discards 8689930 Also check configure.ac in binutils source tree discards 2a159d7 IA MCU run-time doesn't support TLS discards 3c0c046 Skip incompatible tests on IA MCU target discards 0c2b4f1 Turn off loop and funcion alignments for IA MCU discards 1cba4ea Turn on X86_TUNE_USE_BT for IA MCU discards b055376 Turn off X86_TUNE_ZERO_EXTEND_WITH_AND for IA MCU discards b4c2dce Skip error_mark_node type decls discards 7e7d300 FIx *mov?f_internal patterns adds eda37e0 Add a testcase for PR target/66824 adds af80543 Fix fortran double address operator with co_reduce adds 7004605 gcc/ * config/nvptx/mkoffload.c (process): Constify target [...] adds bd9846d * fold-const.c (fold_binary_loc): Move A - (A & B) into ~B & [...] adds 959e7bd * doc/xml/manual/status_cxx2011.xml: Add caveats for native_ [...] adds fc25c67 [graphite] fix pr61929 adds 4e985e0 gcc/ * config/nvptx/mkoffload.c (process): Constify host da [...] adds ff96563 * target.c (GOMP_offload_register): Use int for device type [...] adds df8f279 2015-07-17 Paul Thomas pault@gcc.gnu.org adds 8304568 2015-07-17 Paul Thomas pault@gcc.gnu.org adds ca62da7 2015-07-17 Paul Thomas pault@gcc.gnu.org adds 5257729 2015-07-17 Paul Thomas pault@gcc.gnu.org adds b4c9d99 2015-07-17 Paul Thomas pault@gcc.gnu.org adds dfa8f35 2015-07-17 Paul Thomas pault@gcc.gnu.org adds 8e93f21 2015-07-17 Paul Thomas pault@gcc.gnu.org adds abeac27 2015-07-17 Paul Thomas pault@gcc.gnu.org adds a4455e6 2015-07-17 Paul Thomas pault@gcc.gnu.org new 7503aa6 Replicate static chain on the stack new c8e3e4f Skip error_mark_node type decls new cfc974e Turn off X86_TUNE_ZERO_EXTEND_WITH_AND for IA MCU new 90f9efa Turn on X86_TUNE_USE_BT for IA MCU new 1e631f9 Turn off loop and funcion alignments for IA MCU new 8472199 Skip incompatible tests on IA MCU target new 904637a IA MCU run-time doesn't support TLS new d7c3564 Also check configure.ac in binutils source tree
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 (8689930) \ N -- N -- N refs/heads/hjl/iamcu/improve (d7c3564)
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 8 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 | 44 ++++++++++++++ gcc/config/i386/i386.c | 18 +++++- gcc/config/i386/intelmic-mkoffload.c | 26 ++++---- gcc/config/nvptx/mkoffload.c | 7 ++- gcc/fold-const.c | 24 -------- gcc/fortran/ChangeLog | 23 +++++++ gcc/fortran/decl.c | 5 ++ gcc/fortran/gfortran.h | 1 + gcc/fortran/module.c | 70 ++++++++++++++++++++-- gcc/fortran/trans-intrinsic.c | 2 +- gcc/graphite-dependences.c | 4 +- gcc/graphite-interchange.c | 55 +++++++++-------- gcc/graphite-poly.c | 6 +- gcc/graphite-poly.h | 2 +- gcc/graphite-scop-detection.c | 22 +++++-- gcc/graphite-scop-detection.h | 2 +- gcc/graphite-sese-to-poly.c | 54 ++++++++--------- gcc/match.pd | 6 ++ gcc/testsuite/ChangeLog | 32 ++++++++++ gcc/testsuite/gcc.dg/fold-minus-7.c | 36 +++++++++++ gcc/testsuite/gcc.dg/graphite/pr61929.c | 19 ++++++ gcc/testsuite/gcc.target/i386/pr66906.c | 45 ++++++++++++++ gcc/testsuite/gfortran.dg/co_reduce_1.f90 | 33 ++++++++++ .../{submodule_1.f90 => submodule_1.f08} | 3 + .../{submodule_2.f90 => submodule_2.f08} | 2 + .../{submodule_3.f90 => submodule_3.f08} | 0 .../{submodule_4.f90 => submodule_4.f08} | 0 .../{submodule_5.f90 => submodule_5.f08} | 0 .../{submodule_6.f90 => submodule_6.f08} | 2 + .../{submodule_7.f90 => submodule_7.f08} | 2 + gcc/testsuite/gfortran.dg/submodule_8.f08 | 44 ++++++++++++++ gcc/testsuite/gfortran.dg/submodule_9.f08 | 40 +++++++++++++ gcc/testsuite/lib/fortran-modules.exp | 13 ++++ libgcc/ChangeLog | 4 ++ libgcc/offloadstuff.c | 14 ++--- libgomp/ChangeLog | 19 ++++++ libgomp/libgomp.h | 4 +- libgomp/plugin/plugin-host.c | 4 +- libgomp/plugin/plugin-nvptx.c | 11 ++-- libgomp/target.c | 14 ++--- liboffloadmic/ChangeLog | 7 +++ liboffloadmic/plugin/libgomp-plugin-intelmic.cpp | 9 +-- libstdc++-v3/ChangeLog | 5 ++ libstdc++-v3/doc/html/manual/status.html | 5 +- libstdc++-v3/doc/xml/manual/status_cxx2011.xml | 5 +- 45 files changed, 600 insertions(+), 143 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/fold-minus-7.c create mode 100644 gcc/testsuite/gcc.dg/graphite/pr61929.c create mode 100644 gcc/testsuite/gcc.target/i386/pr66906.c create mode 100644 gcc/testsuite/gfortran.dg/co_reduce_1.f90 rename gcc/testsuite/gfortran.dg/{submodule_1.f90 => submodule_1.f08} (96%) rename gcc/testsuite/gfortran.dg/{submodule_2.f90 => submodule_2.f08} (95%) rename gcc/testsuite/gfortran.dg/{submodule_3.f90 => submodule_3.f08} (100%) rename gcc/testsuite/gfortran.dg/{submodule_4.f90 => submodule_4.f08} (100%) rename gcc/testsuite/gfortran.dg/{submodule_5.f90 => submodule_5.f08} (100%) rename gcc/testsuite/gfortran.dg/{submodule_6.f90 => submodule_6.f08} (94%) rename gcc/testsuite/gfortran.dg/{submodule_7.f90 => submodule_7.f08} (97%) create mode 100644 gcc/testsuite/gfortran.dg/submodule_8.f08 create mode 100644 gcc/testsuite/gfortran.dg/submodule_9.f08