aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/fortran/data.c')
-rw-r--r--gcc/fortran/data.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/gcc/fortran/data.c b/gcc/fortran/data.c
index 10fcd48..654c438 100644
--- a/gcc/fortran/data.c
+++ b/gcc/fortran/data.c
@@ -321,15 +321,17 @@ gfc_assign_data_value (gfc_expr *lvalue, gfc_expr *rvalue, mpz_t index)
else
{
mpz_t size;
- if (spec_size (ref->u.ar.as, &size) == SUCCESS
- && mpz_cmp (offset, size) >= 0)
+ if (spec_size (ref->u.ar.as, &size) == SUCCESS)
{
+ if (mpz_cmp (offset, size) >= 0)
+ {
+ mpz_clear (size);
+ gfc_error ("Data element above array upper bound at %L",
+ &lvalue->where);
+ return FAILURE;
+ }
mpz_clear (size);
- gfc_error ("Data element above array upper bound at %L",
- &lvalue->where);
- return FAILURE;
}
- mpz_clear (size);
}
/* Splay tree containing offset and gfc_constructor. */