2016-07-30 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/69962
* decl.c (gfc_set_constant_character_len): if expr is not
constant issue an error instead of an ICE.
2016-07-30 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/69962
* gfortran.dg/pr69962.f90: New test.
From-SVN: r238906
+2016-07-30 Steven G. Kargl <kargl@gcc.gnu.org>
+
+ PR fortran/69962
+ * decl.c (gfc_set_constant_character_len): if expr is not
+ constant issue an error instead of an ICE.
+
2016-07-30 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/70006
gfc_char_t *s;
int slen;
- gcc_assert (expr->expr_type == EXPR_CONSTANT);
-
if (expr->ts.type != BT_CHARACTER)
return;
+
+ if (expr->expr_type != EXPR_CONSTANT)
+ {
+ gfc_error_now ("CHARACTER length must be a constant at %L", &expr->where);
+ return;
+ }
slen = expr->value.character.length;
if (len != slen)
+2016-07-30 Steven G. Kargl <kargl@gcc.gnu.org>
+
+ PR fortran/69962
+ * gfortran.dg/pr69962.f90: New test.
+
2016-07-30 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/70006
--- /dev/null
+! { dg-do compile }
+program p
+ integer :: n = 1
+ character(3), parameter :: x(2) = ['abc', 'xyz']
+ character(2), parameter :: y(2) = [x(2)(2:3), x(n)(1:2)] ! { dg-error "CHARACTER length must be a constant" }
+end