diff options
Diffstat (limited to 'libgfortran/generated')
-rw-r--r-- | libgfortran/generated/shape_i16.c | 3 | ||||
-rw-r--r-- | libgfortran/generated/shape_i4.c | 3 | ||||
-rw-r--r-- | libgfortran/generated/shape_i8.c | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/libgfortran/generated/shape_i16.c b/libgfortran/generated/shape_i16.c index a89c70a..77274d6 100644 --- a/libgfortran/generated/shape_i16.c +++ b/libgfortran/generated/shape_i16.c @@ -48,6 +48,9 @@ shape_16 (gfc_array_i16 * const restrict ret, stride = ret->dim[0].stride; + if (ret->dim[0].ubound < ret->dim[0].lbound) + return; + for (n = 0; n < GFC_DESCRIPTOR_RANK (array); n++) { ret->data[n * stride] = diff --git a/libgfortran/generated/shape_i4.c b/libgfortran/generated/shape_i4.c index 4f6d62e..787ba54 100644 --- a/libgfortran/generated/shape_i4.c +++ b/libgfortran/generated/shape_i4.c @@ -48,6 +48,9 @@ shape_4 (gfc_array_i4 * const restrict ret, stride = ret->dim[0].stride; + if (ret->dim[0].ubound < ret->dim[0].lbound) + return; + for (n = 0; n < GFC_DESCRIPTOR_RANK (array); n++) { ret->data[n * stride] = diff --git a/libgfortran/generated/shape_i8.c b/libgfortran/generated/shape_i8.c index a4a0ff0..f318b17 100644 --- a/libgfortran/generated/shape_i8.c +++ b/libgfortran/generated/shape_i8.c @@ -48,6 +48,9 @@ shape_8 (gfc_array_i8 * const restrict ret, stride = ret->dim[0].stride; + if (ret->dim[0].ubound < ret->dim[0].lbound) + return; + for (n = 0; n < GFC_DESCRIPTOR_RANK (array); n++) { ret->data[n * stride] = |