diff options
Diffstat (limited to 'libgfortran/generated/minloc1_8_r4.c')
-rw-r--r-- | libgfortran/generated/minloc1_8_r4.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/libgfortran/generated/minloc1_8_r4.c b/libgfortran/generated/minloc1_8_r4.c index 6b0bcec629c..e9df66c669f 100644 --- a/libgfortran/generated/minloc1_8_r4.c +++ b/libgfortran/generated/minloc1_8_r4.c @@ -117,8 +117,9 @@ minloc1_8_r4 (gfc_array_i8 * const restrict retarray, { if (rank != GFC_DESCRIPTOR_RANK (retarray)) runtime_error ("rank of return array incorrect in" - " MINLOC intrinsic: is %d, should be %d", - GFC_DESCRIPTOR_RANK (retarray), rank); + " MINLOC intrinsic: is %ld, should be %ld", + (long int) (GFC_DESCRIPTOR_RANK (retarray)), + (long int) rank); if (compile_options.bounds_check) { @@ -130,8 +131,8 @@ minloc1_8_r4 (gfc_array_i8 * const restrict retarray, - retarray->dim[n].lbound; if (extent[n] != ret_extent) runtime_error ("Incorrect extent in return value of" - " MINLOC intrinsic in dimension %d:" - " is %ld, should be %ld", n + 1, + " MINLOC intrinsic in dimension %ld:" + " is %ld, should be %ld", (long int) n + 1, (long int) ret_extent, (long int) extent[n]); } } @@ -323,8 +324,8 @@ mminloc1_8_r4 (gfc_array_i8 * const restrict retarray, - retarray->dim[n].lbound; if (extent[n] != ret_extent) runtime_error ("Incorrect extent in return value of" - " MINLOC intrinsic in dimension %d:" - " is %ld, should be %ld", n + 1, + " MINLOC intrinsic in dimension %ld:" + " is %ld, should be %ld", (long int) n + 1, (long int) ret_extent, (long int) extent[n]); } for (n=0; n<= rank; n++) @@ -335,8 +336,8 @@ mminloc1_8_r4 (gfc_array_i8 * const restrict retarray, mask_extent = mask->dim[n].ubound + 1 - mask->dim[n].lbound; if (array_extent != mask_extent) runtime_error ("Incorrect extent in MASK argument of" - " MINLOC intrinsic in dimension %d:" - " is %ld, should be %ld", n + 1, + " MINLOC intrinsic in dimension %ld:" + " is %ld, should be %ld", (long int) n + 1, (long int) mask_extent, (long int) array_extent); } } @@ -460,7 +461,7 @@ sminloc1_8_r4 (gfc_array_i8 * const restrict retarray, ret_rank = GFC_DESCRIPTOR_RANK (retarray); if (ret_rank != 1) runtime_error ("rank of return array in MINLOC intrinsic" - " should be 1, is %d", ret_rank); + " should be 1, is %ld", (long int) ret_rank); ret_extent = retarray->dim[0].ubound + 1 - retarray->dim[0].lbound; if (ret_extent != rank) |