+2017-09-15 Paul Thomas <pault@gcc.gnu.org>
+
+ PR fortran/82184
+ trans-decl.c (gfc_trans_deferred_vars): Do not null the 'span'
+ field if the symbol is either implicitly or explicitly saved.
+
2017-09-13 Paul Thomas <pault@gcc.gnu.org>
PR fortran/82173
+2017-09-15 Paul Thomas <pault@gcc.gnu.org>
+
+ PR fortran/82184
+ * gfortran.dg/pointer_array_9.f90: New test.
+
2017-09-14 Michael Meissner <meissner@linux.vnet.ibm.com>
* gcc.target/powerpc/abs128-1.c: Use __builtin_fabsf128 instead of
--- /dev/null
+! { dg-do run }
+!
+! Tests fix for PR82184
+!
+! Contributed by Andrey Guskov <andrey.y.guskov@intel.com)
+!
+program r187
+ call s()
+ call s()
+contains
+ subroutine s()
+ complex(4), allocatable, save :: a(:, :)
+ complex(4), pointer, save :: b(:, :)
+ if (.not. associated(b)) then
+ allocate(a(2, 2))
+ allocate(b(2, 2))
+ a = reshape ([cmplx(1, 1), cmplx(2, 2), cmplx(1, 2), cmplx(2, 1)], [2,2])
+ else
+ b = transpose(a)
+ if (merge("PASSED", "FAILED", all (transpose (a) .eq. b)) .eq. "FAILED") call abort
+ end if
+ end subroutine s
+end program r187