aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Thomas <pault@gcc.gnu.org>2015-10-28 19:28:54 +0000
committerPaul Thomas <pault@gcc.gnu.org>2015-10-28 19:28:54 +0000
commit4839652517481cdca7a921abb13e492e2f81c6b1 (patch)
tree6e76d5c912ea3c7d866ec3cbbe089c734f062799
parenta3320d62af202fc82ffd12d36a02af5d4a694a56 (diff)
downloadgcc-4839652517481cdca7a921abb13e492e2f81c6b1.zip
gcc-4839652517481cdca7a921abb13e492e2f81c6b1.tar.gz
gcc-4839652517481cdca7a921abb13e492e2f81c6b1.tar.bz2
re PR fortran/67933 (ICE for array of a derived type with allocatable class in derived type object)
2015-01-28 Paul Thomas <pault@gcc.gnu.org> PR fortran/67933 * gfortran.dg/allocate_with_source_15.f03: Correct trivial array bounds error at line 25. From-SVN: r229503
-rw-r--r--gcc/testsuite/ChangeLog6
-rw-r--r--gcc/testsuite/gfortran.dg/allocate_with_source_15.f032
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 5ca99b0..05cad86 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2015-01-28 Paul Thomas <pault@gcc.gnu.org>
+
+ PR fortran/67933
+ * gfortran.dg/allocate_with_source_15.f03: Correct trivial
+ array bounds error at line 25.
+
2015-10-28 Catherine Moore <clm@codesourcery.com>
* gcc.target/mips/oddspreg-3.c: Disable for MIPS16.
diff --git a/gcc/testsuite/gfortran.dg/allocate_with_source_15.f03 b/gcc/testsuite/gfortran.dg/allocate_with_source_15.f03
index 38f9cec..f939aa3 100644
--- a/gcc/testsuite/gfortran.dg/allocate_with_source_15.f03
+++ b/gcc/testsuite/gfortran.dg/allocate_with_source_15.f03
@@ -22,7 +22,7 @@ module test_mod
end type wrapper_t
type :: list_t
- type(wrapper_t) :: classes(10)
+ type(wrapper_t) :: classes(20)
contains
procedure :: Method
procedure :: Typeme