diff options
author | Steven G. Kargl <kargl@gcc.gnu.org> | 2016-07-30 19:24:49 +0000 |
---|---|---|
committer | Steven G. Kargl <kargl@gcc.gnu.org> | 2016-07-30 19:24:49 +0000 |
commit | b441ae1d89410e8f95a4c3317db0f52831bfaf0e (patch) | |
tree | b4f538f9fcb1ce39640cb256c19b2e74d57ca8b1 /gcc/fortran/decl.c | |
parent | 712dff3172d503c496366d148c8e3fe018b584a5 (diff) | |
download | gcc-b441ae1d89410e8f95a4c3317db0f52831bfaf0e.zip gcc-b441ae1d89410e8f95a4c3317db0f52831bfaf0e.tar.gz gcc-b441ae1d89410e8f95a4c3317db0f52831bfaf0e.tar.bz2 |
re PR fortran/69962 (ICE on missing parameter attribute, in gfc_set_constant_character_len)
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
Diffstat (limited to 'gcc/fortran/decl.c')
-rw-r--r-- | gcc/fortran/decl.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/fortran/decl.c b/gcc/fortran/decl.c index 7ff2f0d..ae68c09f 100644 --- a/gcc/fortran/decl.c +++ b/gcc/fortran/decl.c @@ -1495,10 +1495,14 @@ gfc_set_constant_character_len (int len, gfc_expr *expr, int check_len) 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) |