aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/simplify.c
diff options
context:
space:
mode:
authorTobias Burnus <tobias@codesourcery.com>2021-08-20 15:43:32 +0200
committerTobias Burnus <tobias@codesourcery.com>2021-08-20 15:43:32 +0200
commit1b507b1e3c58c063b9cf803dff80c28d4626cb5d (patch)
tree3a61a7da692a0771377ad3b0b7e6209d49dac4c5 /gcc/fortran/simplify.c
parent12f22906d3c025e7edb60e3264dc9cd27a49e3e1 (diff)
downloadgcc-1b507b1e3c58c063b9cf803dff80c28d4626cb5d.zip
gcc-1b507b1e3c58c063b9cf803dff80c28d4626cb5d.tar.gz
gcc-1b507b1e3c58c063b9cf803dff80c28d4626cb5d.tar.bz2
c-format.c/Fortran: Support %wd / host-wide integer in gfc_error
This patch adds support for the 'll' (long double) and 'w' (HOST_WIDE_INT) length modifiers to the Fortran FE diagnostic function (gfc_error, gfc_warning, ...) gcc/c-family/ChangeLog: * c-format.c (gcc_gfc_length_specs): Add 'll' and 'w'. (gcc_gfc_char_table): Add T9L_LL and T9L_ULL to "di" and "u", respecitively; fill with BADLEN to match size of 'types'. (get_init_dynamic_hwi): Split off from ... (init_dynamic_diag_info): ... here. Call it. (init_dynamic_gfc_info): Call it. gcc/fortran/ChangeLog: * error.c (error_uinteger): Take 'long long unsigned' instead of 'long unsigned' as argumpent. (error_integer): Take 'long long' instead of 'long'. (error_hwuint, error_hwint): New. (error_print): Update to handle 'll' and 'w' length modifiers. * simplify.c (substring_has_constant_len): Use '%wd' in gfc_error.
Diffstat (limited to 'gcc/fortran/simplify.c')
-rw-r--r--gcc/fortran/simplify.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/gcc/fortran/simplify.c b/gcc/fortran/simplify.c
index eaabbff..4cb73e8 100644
--- a/gcc/fortran/simplify.c
+++ b/gcc/fortran/simplify.c
@@ -4552,12 +4552,10 @@ substring_has_constant_len (gfc_expr *e)
if (istart <= iend)
{
- char buffer[21];
if (istart < 1)
{
- sprintf (buffer, HOST_WIDE_INT_PRINT_DEC, istart);
- gfc_error ("Substring start index (%s) at %L below 1",
- buffer, &ref->u.ss.start->where);
+ gfc_error ("Substring start index (%wd) at %L below 1",
+ istart, &ref->u.ss.start->where);
return false;
}
@@ -4568,9 +4566,8 @@ substring_has_constant_len (gfc_expr *e)
length = gfc_mpz_get_hwi (ref->u.ss.length->length->value.integer);
if (iend > length)
{
- sprintf (buffer, HOST_WIDE_INT_PRINT_DEC, iend);
- gfc_error ("Substring end index (%s) at %L exceeds string length",
- buffer, &ref->u.ss.end->where);
+ gfc_error ("Substring end index (%wd) at %L exceeds string length",
+ iend, &ref->u.ss.end->where);
return false;
}
length = iend - istart + 1;