This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/pr82166/master in repository gcc.
discards 4b475f38a0f i386: Also update preferred stack boundary for leaf main adds 47e6a59aedf 2017-09-10 Paul Thomas pault@gcc.gnu.org adds 6e17101cbcb PR ada/79441 * gnat.dg/pack9.adb: Robustify. new e0ecd1afdee i386: Also update preferred stack boundary for leaf main new 50c5358140f Use preferred_stack_boundary
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 (4b475f38a0f) \ N -- N -- N refs/heads/hjl/pr82166/master (50c5358140f)
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/config/i386/i386.c | 15 +- gcc/fortran/ChangeLog | 65 ++++++ gcc/fortran/expr.c | 5 + gcc/fortran/trans-array.c | 258 ++++++++++++++++++--- gcc/fortran/trans-array.h | 5 + gcc/fortran/trans-decl.c | 40 ++-- gcc/fortran/trans-expr.c | 69 +++--- gcc/fortran/trans-intrinsic.c | 12 +- gcc/fortran/trans-io.c | 9 + gcc/fortran/trans-stmt.c | 19 +- gcc/fortran/trans-types.c | 37 ++- gcc/fortran/trans.c | 139 +++++------ gcc/fortran/trans.h | 2 +- gcc/testsuite/ChangeLog | 33 +++ gcc/testsuite/gfortran.dg/associate_24.f90 | 33 +++ gcc/testsuite/gfortran.dg/assumed_type_2.f90 | 4 +- .../gfortran.dg/goacc/kernels-alias-4.f95 | 4 +- gcc/testsuite/gfortran.dg/no_arg_check_2.f90 | 4 +- gcc/testsuite/gfortran.dg/pointer_array_1.f90 | 60 +++++ gcc/testsuite/gfortran.dg/pointer_array_2.f90 | 143 ++++++++++++ gcc/testsuite/gfortran.dg/pointer_array_3.f90 | 51 ++++ gcc/testsuite/gfortran.dg/pointer_array_4.f90 | 75 ++++++ gcc/testsuite/gfortran.dg/pointer_array_5.f90 | 65 ++++++ gcc/testsuite/gfortran.dg/pointer_array_6.f90 | 28 +++ gcc/testsuite/gfortran.dg/pointer_array_7.f90 | 46 ++++ gcc/testsuite/gfortran.dg/pointer_array_8.f90 | 81 +++++++ .../gfortran.dg/pointer_array_component_1.f90 | 47 ++++ .../gfortran.dg/pointer_array_component_2.f90 | 43 ++++ gcc/testsuite/gnat.dg/pack9.adb | 3 +- libgfortran/ChangeLog | 6 + libgfortran/libgfortran.h | 1 + libgfortran/libtool-version | 2 +- 32 files changed, 1217 insertions(+), 187 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/associate_24.f90 create mode 100644 gcc/testsuite/gfortran.dg/pointer_array_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/pointer_array_2.f90 create mode 100644 gcc/testsuite/gfortran.dg/pointer_array_3.f90 create mode 100644 gcc/testsuite/gfortran.dg/pointer_array_4.f90 create mode 100644 gcc/testsuite/gfortran.dg/pointer_array_5.f90 create mode 100644 gcc/testsuite/gfortran.dg/pointer_array_6.f90 create mode 100644 gcc/testsuite/gfortran.dg/pointer_array_7.f90 create mode 100644 gcc/testsuite/gfortran.dg/pointer_array_8.f90 create mode 100644 gcc/testsuite/gfortran.dg/pointer_array_component_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/pointer_array_component_2.f90